summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMorten Johan Sorvig <morten.sorvig@nokia.com>2012-09-27 14:03:31 +0200
committerSamuel Rødal <samuel.rodal@digia.com>2012-09-28 13:48:04 +0200
commitc0d42b05b450aa255a6b2c88fb61b70848f924e6 (patch)
tree552fb34c63156fb0dc5df89fe4ca9fe1d878ec24 /src
parentd82863a87157ba901a5076e5f5639189d6177e41 (diff)
Compile after QWindowSystemInterface API changes.
Change-Id: I71024a4f36d4952c70b3dc3caa2156e2e7c9b837 Reviewed-by: Jørgen Lind <jorgen.lind@gmail.com> Reviewed-by: Samuel Rødal <samuel.rodal@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/platforms/wayland/qwaylandextendedsurface.cpp9
-rw-r--r--src/plugins/platforms/wayland/qwaylandwindow.cpp9
2 files changed, 11 insertions, 7 deletions
diff --git a/src/plugins/platforms/wayland/qwaylandextendedsurface.cpp b/src/plugins/platforms/wayland/qwaylandextendedsurface.cpp
index ca1077be0..1d3bd6d53 100644
--- a/src/plugins/platforms/wayland/qwaylandextendedsurface.cpp
+++ b/src/plugins/platforms/wayland/qwaylandextendedsurface.cpp
@@ -147,10 +147,11 @@ void QWaylandExtendedSurface::onscreen_visibility(void *data, wl_extended_surfac
extendedWindow->m_exposed = visible;
QWaylandWindow *w = extendedWindow->m_window;
- QWindowSystemInterface::handleSynchronousExposeEvent(w->window(),
- visible
- ? QRegion(w->geometry())
- : QRegion());
+ QWindowSystemInterface::handleExposeEvent(w->window(),
+ visible
+ ? QRegion(w->geometry())
+ : QRegion());
+ QWindowSystemInterface::flushWindowSystemEvents();
}
void QWaylandExtendedSurface::set_generic_property(void *data, wl_extended_surface *wl_extended_surface, const char *name, wl_array *value)
diff --git a/src/plugins/platforms/wayland/qwaylandwindow.cpp b/src/plugins/platforms/wayland/qwaylandwindow.cpp
index 05781ff54..7fae0a44b 100644
--- a/src/plugins/platforms/wayland/qwaylandwindow.cpp
+++ b/src/plugins/platforms/wayland/qwaylandwindow.cpp
@@ -158,13 +158,16 @@ void QWaylandWindow::setVisible(bool visible)
wl_surface_attach(mSurface, mBuffer->buffer(), 0, 0);
if (!mSentInitialResize) {
- QWindowSystemInterface::handleSynchronousGeometryChange(window(), geometry());
+ QWindowSystemInterface::handleGeometryChange(window(), geometry());
+ QWindowSystemInterface::flushWindowSystemEvents();
mSentInitialResize = true;
}
- QWindowSystemInterface::handleSynchronousExposeEvent(window(), QRect(QPoint(), geometry().size()));
+ QWindowSystemInterface::handleExposeEvent(window(), QRect(QPoint(), geometry().size()));
+ QWindowSystemInterface::flushWindowSystemEvents();
} else {
- QWindowSystemInterface::handleSynchronousExposeEvent(window(), QRect(QPoint(), geometry().size()));
+ QWindowSystemInterface::handleExposeEvent(window(), QRect(QPoint(), geometry().size()));
+ QWindowSystemInterface::flushWindowSystemEvents();
wl_surface_attach(mSurface, 0,0,0);
damage(QRect(QPoint(0,0),geometry().size()));
}