aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp')
-rw-r--r--tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp b/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp
index 41cd2dd23f..f651249679 100644
--- a/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp
+++ b/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp
@@ -1331,8 +1331,8 @@ void tst_qqmlcomponent::loadFromModule()
struct CallVerifyingIncubtor : QQmlIncubator
{
- void setInitialState(QObject *) { setInitialStateCalled = true; }
- void statusChanged(QQmlIncubator::Status status) { lastStatus = status; }
+ void setInitialState(QObject *) override { setInitialStateCalled = true; }
+ void statusChanged(QQmlIncubator::Status status) override { lastStatus = status; }
QQmlIncubator::Status lastStatus = QQmlIncubator::Null;
bool setInitialStateCalled = false;