Fix getDisplayHeight
This commit is contained in:
parent
533d8bbbf8
commit
143121b77d
|
@ -66,7 +66,7 @@ public:
|
||||||
virtual std::string getPlatformType() = 0;
|
virtual std::string getPlatformType() = 0;
|
||||||
|
|
||||||
int getDisplayWidth() { return getDisplaySize().width(); }
|
int getDisplayWidth() { return getDisplaySize().width(); }
|
||||||
int getDisplayHeight() { return getDisplaySize().width(); }
|
int getDisplayHeight() { return getDisplaySize().height(); }
|
||||||
|
|
||||||
Size getUnmaximizedSize() { return m_unmaximizedSize; }
|
Size getUnmaximizedSize() { return m_unmaximizedSize; }
|
||||||
Size getSize() { return m_size; }
|
Size getSize() { return m_size; }
|
||||||
|
|
Loading…
Reference in New Issue