fixed missing return statement

This commit is contained in:
fourtf 2019-09-01 14:26:40 +02:00
parent 00c1de54b9
commit 37dd66f7ad

View file

@ -836,8 +836,8 @@ bool BaseWindow::handleMOVE(MSG *msg)
this->currentBounds_ = QRect(QPoint(rect.left, rect.top),
QPoint(rect.right - 1, rect.bottom - 1));
}
return false;
#endif
return false;
}
bool BaseWindow::handleNCHITTEST(MSG *msg, long *result)