mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fixed compilation on non-windows
This commit is contained in:
parent
ae20acb7ea
commit
00c1de54b9
|
@ -828,6 +828,7 @@ bool BaseWindow::handleSIZE(MSG *msg)
|
|||
|
||||
bool BaseWindow::handleMOVE(MSG *msg)
|
||||
{
|
||||
#ifdef USEWINSDK
|
||||
if (this->isNotMinimizedOrMaximized_)
|
||||
{
|
||||
RECT rect;
|
||||
|
@ -836,6 +837,7 @@ bool BaseWindow::handleMOVE(MSG *msg)
|
|||
QPoint(rect.right - 1, rect.bottom - 1));
|
||||
}
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
bool BaseWindow::handleNCHITTEST(MSG *msg, long *result)
|
||||
|
|
Loading…
Reference in a new issue