aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/resourceeditor/resourceeditorw.h
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@theqtcompany.com>2015-06-01 17:55:31 +0200
committerEike Ziller <eike.ziller@theqtcompany.com>2015-06-09 04:17:42 +0000
commite00aa54f4e1d1e91e6dcac416eb9a3996145735a (patch)
tree6d34aa67ee49384ba09087de7dc200df43665c47 /src/plugins/resourceeditor/resourceeditorw.h
parent686def2dc2e1ddb147be18d872c7d69ac9c84222 (diff)
Add override keyword to IEditor & TextEditorWidget implementations
Change-Id: I403101d788d9edfea5c5c9440ab4f39ad00e81f7 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src/plugins/resourceeditor/resourceeditorw.h')
-rw-r--r--src/plugins/resourceeditor/resourceeditorw.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/resourceeditor/resourceeditorw.h b/src/plugins/resourceeditor/resourceeditorw.h
index 18ed3af2a2..2e18032e78 100644
--- a/src/plugins/resourceeditor/resourceeditorw.h
+++ b/src/plugins/resourceeditor/resourceeditorw.h
@@ -92,12 +92,12 @@ public:
ResourceEditorW(const Core::Context &context,
ResourceEditorPlugin *plugin,
QWidget *parent = 0);
- ~ResourceEditorW();
+ ~ResourceEditorW() override;
// IEditor
- bool open(QString *errorString, const QString &fileName, const QString &realFileName);
- Core::IDocument *document() { return m_resourceDocument; }
- QWidget *toolBar();
+ bool open(QString *errorString, const QString &fileName, const QString &realFileName) override;
+ Core::IDocument *document() override { return m_resourceDocument; }
+ QWidget *toolBar() override;
private slots:
void onUndoStackChanged(bool canUndo, bool canRedo);