aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/glsleditor
diff options
context:
space:
mode:
authorAndre Hartmann <aha_1980@gmx.de>2016-08-10 09:43:56 +0200
committerAndré Hartmann <aha_1980@gmx.de>2016-08-10 11:04:18 +0000
commitfc75b96dca63b82063d047b1d6024e5673fbb026 (patch)
treea2f828243ac68672b030b1f7066f9cdcda939dda /src/plugins/glsleditor
parent6afcf33f7a313c829342a56712e7382cf82e4ca7 (diff)
BaseHoverHandler: Remove virtual and add override to derivations
Change-Id: I2bd3fd4774d7ffeb54c373309c98aa879a391227 Reviewed-by: Marc Reilly <marc.reilly@gmail.com> Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/glsleditor')
-rw-r--r--src/plugins/glsleditor/glslhoverhandler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/glsleditor/glslhoverhandler.h b/src/plugins/glsleditor/glslhoverhandler.h
index f15c8b9948..5d1f29067e 100644
--- a/src/plugins/glsleditor/glslhoverhandler.h
+++ b/src/plugins/glsleditor/glslhoverhandler.h
@@ -36,8 +36,8 @@ public:
GlslHoverHandler() {}
private:
- virtual void identifyMatch(TextEditor::TextEditorWidget *editorWidget, int pos);
- virtual void decorateToolTip();
+ void identifyMatch(TextEditor::TextEditorWidget *editorWidget, int pos) override;
+ void decorateToolTip() override;
};
} // namespace Internal