aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp')
-rw-r--r--tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp b/tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp
index 159fb1398e..bc1c16de6d 100644
--- a/tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp
+++ b/tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp
@@ -46,7 +46,7 @@ public:
tst_qquickbehaviors() : QQmlDataTest(QT_QMLTEST_DATADIR) {}
private slots:
- void init() { qApp->processEvents(); } //work around animation timer bug (QTBUG-22865)
+ void init() override;
void simpleBehavior();
void scriptTriggered();
void cppTriggered();
@@ -81,6 +81,13 @@ private slots:
void defaultQProperty();
};
+void tst_qquickbehaviors::init()
+{
+ QQmlDataTest::init();
+ //work around animation timer bug (QTBUG-22865)
+ qApp->processEvents();
+}
+
void tst_qquickbehaviors::simpleBehavior()
{
QQmlEngine engine;