aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp')
-rw-r--r--tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp b/tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp
index 515f61a545..57adb79097 100644
--- a/tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp
+++ b/tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp
@@ -116,8 +116,8 @@ QObject *testTypeProvider(QQmlEngine *engine, QJSEngine *scriptEngine)
class ParserStatusTestType : public QObject, public QQmlParserStatus
{
Q_OBJECT
- void classBegin(){}
- void componentComplete(){}
+ void classBegin() override {}
+ void componentComplete() override {}
Q_CLASSINFO("DefaultProperty", "foo") // Missing default property
Q_INTERFACES(QQmlParserStatus)
};