aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cvs
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/cvs
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/cvs')
-rw-r--r--src/plugins/cvs/cvseditor.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/plugins/cvs/cvseditor.h b/src/plugins/cvs/cvseditor.h
index 0628591df77..d2cecfe1a6d 100644
--- a/src/plugins/cvs/cvseditor.h
+++ b/src/plugins/cvs/cvseditor.h
@@ -46,10 +46,11 @@ public:
CvsEditorWidget();
private:
- QSet<QString> annotationChanges() const;
- QString changeUnderCursor(const QTextCursor &) const;
- VcsBase::BaseAnnotationHighlighter *createAnnotationHighlighter(const QSet<QString> &changes) const;
- QStringList annotationPreviousVersions(const QString &revision) const;
+ QSet<QString> annotationChanges() const override;
+ QString changeUnderCursor(const QTextCursor &) const override;
+ VcsBase::BaseAnnotationHighlighter *createAnnotationHighlighter(
+ const QSet<QString> &changes) const override;
+ QStringList annotationPreviousVersions(const QString &revision) const override;
mutable QRegExp m_revisionAnnotationPattern;
mutable QRegExp m_revisionLogPattern;