diff options
| author | Alexander Volkov <avolkov@astralinux.ru> | 2020-05-20 17:12:14 +0300 |
|---|---|---|
| committer | Alexander Volkov <avolkov@astralinux.ru> | 2020-05-25 08:54:56 +0000 |
| commit | a2f9eaf552b58a258beb25d29691fff97276e198 (patch) | |
| tree | 29b532f84ce4f73168297a8ae5ecb92b8e6231d3 /src/controls/plugin.h | |
| parent | 052eb295cd5c0d7aa101e7fe30e53ecf3f894361 (diff) | |
Add missing override
Pick-to: 5.15
Change-Id: Iba896b0af174ed28a27413d7343427cf9b4600d3
Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/controls/plugin.h')
| -rw-r--r-- | src/controls/plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/plugin.h b/src/controls/plugin.h index 04fd0685a..30ff5df9c 100644 --- a/src/controls/plugin.h +++ b/src/controls/plugin.h @@ -56,8 +56,8 @@ class QtQuickControls1Plugin: public QQmlExtensionPlugin Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid) public: QtQuickControls1Plugin(QObject *parent = 0); - void registerTypes(const char *uri); - void initializeEngine(QQmlEngine *engine, const char *uri); + void registerTypes(const char *uri) override; + void initializeEngine(QQmlEngine *engine, const char *uri) override; private: QString fileLocation() const; bool isLoadedFromResource() const; |
