summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiulio Camuffo <giulio.camuffo@jollamobile.com>2014-09-15 10:36:14 +0300
committerGiulio Camuffo <giulio.camuffo@jollamobile.com>2014-09-15 11:45:54 +0200
commita7d9523c9cf731f3f6dd9424fc409eb315800153 (patch)
tree516b68d85329c7f25fd996cd26b0c9f2d73d3891
parent0e954e7f4f14652d4079407cddc9de40381d29fd (diff)
The QWindowSystemInterface API changed, make it build again
Change-Id: Ic00a820ebac7727a8d71d62ce191fe29de52aac0 Reviewed-by: Robin Burchell <robin.burchell@viroteck.net>
-rw-r--r--src/client/qwaylandscreen.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/qwaylandscreen.cpp b/src/client/qwaylandscreen.cpp
index 6213da87f..9c34baeed 100644
--- a/src/client/qwaylandscreen.cpp
+++ b/src/client/qwaylandscreen.cpp
@@ -211,8 +211,7 @@ void QWaylandScreen::output_done()
// the done event is sent after all the geometry and the mode events are sent,
// and the last mode event to be sent is the active one, so we can trust the
// values of mGeometry and mRefreshRate here
- QWindowSystemInterface::handleScreenGeometryChange(screen(), mGeometry);
- QWindowSystemInterface::handleScreenAvailableGeometryChange(screen(), mGeometry);
+ QWindowSystemInterface::handleScreenGeometryChange(screen(), mGeometry, mGeometry);
QWindowSystemInterface::handleScreenRefreshRateChange(screen(), refreshRate());
}