aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlextensionplugin.h
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2016-11-11 02:09:57 -0800
committerJake Petroules <jake.petroules@qt.io>2016-11-11 19:49:10 +0000
commit686409c05a7867d966124c3e854f39bcfd35b15a (patch)
treee35653ea371e67c02edf0e18194deba9d150fdbc /src/qml/qml/qqmlextensionplugin.h
parent9c50216c7bbbdb2bb51d4485286bf09e12fb5b62 (diff)
Qml: add missing 'override'
... and drop redundant 'virtual' Change-Id: I2a57685e342208d7ef1f13f97a56cb3ff7a31422 Reviewed-by: Anton Kudryavtsev <antkudr@mail.ru> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/qml/qqmlextensionplugin.h')
-rw-r--r--src/qml/qml/qqmlextensionplugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlextensionplugin.h b/src/qml/qml/qqmlextensionplugin.h
index 934cf0f51a..c0915c0abe 100644
--- a/src/qml/qml/qqmlextensionplugin.h
+++ b/src/qml/qml/qqmlextensionplugin.h
@@ -63,7 +63,7 @@ public:
QUrl baseUrl() const;
- virtual void registerTypes(const char *uri) = 0;
+ void registerTypes(const char *uri) override = 0;
void initializeEngine(QQmlEngine *engine, const char *uri) override;
private: