aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cppeditorplugin.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-08-20 13:15:04 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-08-20 12:43:16 +0000
commitf096fbc11f5c2bc3bc707f151ad56cfb51225455 (patch)
treecc4c511aa1cedf79546ca49b1dfe7a97a04d258f /src/plugins/cppeditor/cppeditorplugin.h
parent7c40b41ee6d9de1fc9bfd6cacd6f7306e172ed6d (diff)
CppEditor: Add missing override modifiers.
Change-Id: I88c7c6c2e344e1ecfb8b6be3814cc900eff6b0b2 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
Diffstat (limited to 'src/plugins/cppeditor/cppeditorplugin.h')
-rw-r--r--src/plugins/cppeditor/cppeditorplugin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/cppeditor/cppeditorplugin.h b/src/plugins/cppeditor/cppeditorplugin.h
index a4f4304b0c..3dbc5b2c58 100644
--- a/src/plugins/cppeditor/cppeditorplugin.h
+++ b/src/plugins/cppeditor/cppeditorplugin.h
@@ -59,9 +59,9 @@ public:
static CppEditorPlugin *instance();
- bool initialize(const QStringList &arguments, QString *errorMessage = 0);
- void extensionsInitialized();
- ShutdownFlag aboutToShutdown();
+ bool initialize(const QStringList &arguments, QString *errorMessage = 0) override;
+ void extensionsInitialized() override;
+ ShutdownFlag aboutToShutdown() override;
CppQuickFixAssistProvider *quickFixProvider() const;