From 37dd66f7ad3cff76e74f49c712198cdb31ebbe44 Mon Sep 17 00:00:00 2001 From: fourtf Date: Sun, 1 Sep 2019 14:26:40 +0200 Subject: [PATCH] fixed missing return statement --- lib/appbase/widgets/BaseWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/appbase/widgets/BaseWindow.cpp b/lib/appbase/widgets/BaseWindow.cpp index 9aed2e83d..4f0ec2537 100644 --- a/lib/appbase/widgets/BaseWindow.cpp +++ b/lib/appbase/widgets/BaseWindow.cpp @@ -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)