aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildstep.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-11-13 11:06:27 +0100
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-11-16 10:14:32 +0000
commit0e278e9efeffef2de86decfc5e415a94d7234b4f (patch)
treeef4ca0117d5ab3dc65e7f707a9d626cc2dd48a0d /src/plugins/projectexplorer/buildstep.h
parentca29cbfc8a4cd2fad3556f0c98febc4692894265 (diff)
ProjectConfiguration: Sprinkle override and explicit over the code
Change-Id: I2aa3a32a0d30f1d122977d94d4109227dea6bbd7 Reviewed-by: Niels Weber <niels.weber@theqtcompany.com> Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/buildstep.h')
-rw-r--r--src/plugins/projectexplorer/buildstep.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/buildstep.h b/src/plugins/projectexplorer/buildstep.h
index bfd0dfd616..e550fbd6bf 100644
--- a/src/plugins/projectexplorer/buildstep.h
+++ b/src/plugins/projectexplorer/buildstep.h
@@ -56,7 +56,7 @@ protected:
BuildStep(BuildStepList *bsl, BuildStep *bs);
public:
- virtual ~BuildStep();
+ ~BuildStep() override;
virtual bool init() = 0;
@@ -68,8 +68,8 @@ public:
virtual bool runInGuiThread() const;
virtual void cancel();
- virtual bool fromMap(const QVariantMap &map);
- virtual QVariantMap toMap() const;
+ bool fromMap(const QVariantMap &map) override;
+ QVariantMap toMap() const override;
bool enabled() const;
void setEnabled(bool b);