aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2012-07-24 14:56:35 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-24 16:53:08 +0200
commitc20463631ddbb4513bec100c22c74b8a919156a1 (patch)
treea6f9d35185a7deb89e7ef568e4e4dd929f0d6982 /tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp
parent3bb7128fb705fa88ba955ca0ae6bd44fcef8fa4b (diff)
QtQuick: Remove usages of qWaitForWindowShown(QWindow *).
Change-Id: I722e20b2fb8d8c6c19c6f3f2cb16910d7433e9a4 Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
Diffstat (limited to 'tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp')
-rw-r--r--tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp b/tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp
index 020a77c1d9..8f20f2241d 100644
--- a/tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp
+++ b/tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp
@@ -59,7 +59,7 @@ public:
view.setSource(testFileUrl(fileName));
view.show();
- QTest::qWaitForWindowShown(&view);
+ QTest::qWaitForWindowExposed(&view);
return view.grabWindow();
}
@@ -310,7 +310,7 @@ void tst_QQuickItemLayer::layerZOrder()
view.show();
- QTest::qWaitForWindowShown(&view);
+ QVERIFY(QTest::qWaitForWindowExposed(&view));
QImage fb = view.grabWindow();
@@ -347,7 +347,7 @@ void tst_QQuickItemLayer::changeZOrder()
view.show();
- QTest::qWaitForWindowShown(&view);
+ QVERIFY(QTest::qWaitForWindowExposed(&view));
QImage fb = view.grabWindow();