summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/platforms/qnx/qqnxwindow.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/plugins/platforms/qnx/qqnxwindow.cpp b/src/plugins/platforms/qnx/qqnxwindow.cpp
index 3344a87f12..1dfb45d7ff 100644
--- a/src/plugins/platforms/qnx/qqnxwindow.cpp
+++ b/src/plugins/platforms/qnx/qqnxwindow.cpp
@@ -214,11 +214,8 @@ void QQnxWindow::setGeometry(const QRect &rect)
QWindowSystemInterface::handleSynchronousGeometryChange(window(), rect);
// Now move all children.
- QPoint offset;
if (!oldGeometry.isEmpty()) {
- offset = rect.topLeft();
- offset -= oldGeometry.topLeft();
-
+ const QPoint offset = rect.topLeft() - oldGeometry.topLeft();
Q_FOREACH (QQnxWindow *childWindow, m_childWindows)
childWindow->setOffset(offset);
}