aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildstep.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2018-05-07 14:58:16 +0200
committerTobias Hunger <tobias.hunger@qt.io>2018-05-07 13:38:34 +0000
commitdee02070349682286d385cb5c00ca61478cc44ca (patch)
tree1aed16163b25415affbafd512d23b03a1cc8437c /src/plugins/projectexplorer/buildstep.h
parent91c19ab19d17a332cb5c880bede5ed4462085978 (diff)
ProjectExplorer: Use override consistently
clang-tidy fixes from modernize-use-override check. Change-Id: I216701aec0b4134321e220f9e599e053a8e22945 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/projectexplorer/buildstep.h')
-rw-r--r--src/plugins/projectexplorer/buildstep.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/projectexplorer/buildstep.h b/src/plugins/projectexplorer/buildstep.h
index 7a0f6db92a..840e31ee21 100644
--- a/src/plugins/projectexplorer/buildstep.h
+++ b/src/plugins/projectexplorer/buildstep.h
@@ -124,7 +124,7 @@ class PROJECTEXPLORER_EXPORT BuildStepFactory : public QObject
public:
BuildStepFactory();
- ~BuildStepFactory();
+ ~BuildStepFactory() override;
static const QList<BuildStepFactory *> allBuildStepFactories();
@@ -191,9 +191,9 @@ public:
this, &BuildStepConfigWidget::updateSummary);
}
- QString summaryText() const { return QLatin1String("<b>") + displayName() + QLatin1String("</b>"); }
- QString displayName() const { return m_step->displayName(); }
- bool showWidget() const { return false; }
+ QString summaryText() const override { return QLatin1String("<b>") + displayName() + QLatin1String("</b>"); }
+ QString displayName() const override { return m_step->displayName(); }
+ bool showWidget() const override { return false; }
BuildStep *step() const { return m_step; }
private: