summaryrefslogtreecommitdiff
path: root/src/plugins/qmakeprojectmanager/makestep.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/qmakeprojectmanager/makestep.h
parentca29cbfc8a4cd2fad3556f0c98febc4692894265 (diff)
downloadqt-creator-0e278e9efeffef2de86decfc5e415a94d7234b4f.tar.gz
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/qmakeprojectmanager/makestep.h')
-rw-r--r--src/plugins/qmakeprojectmanager/makestep.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/qmakeprojectmanager/makestep.h b/src/plugins/qmakeprojectmanager/makestep.h
index 7586d989f9..9b652f5d93 100644
--- a/src/plugins/qmakeprojectmanager/makestep.h
+++ b/src/plugins/qmakeprojectmanager/makestep.h
@@ -80,22 +80,22 @@ class QMAKEPROJECTMANAGER_EXPORT MakeStep : public ProjectExplorer::AbstractProc
public:
explicit MakeStep(ProjectExplorer::BuildStepList *bsl);
- virtual ~MakeStep();
+ ~MakeStep() override;
QmakeBuildConfiguration *qmakeBuildConfiguration() const;
- virtual bool init();
- virtual void run(QFutureInterface<bool> &);
+ bool init() override;
+ void run(QFutureInterface<bool> &) override;
- virtual ProjectExplorer::BuildStepConfigWidget *createConfigWidget();
- virtual bool immutable() const;
+ ProjectExplorer::BuildStepConfigWidget *createConfigWidget() override;
+ bool immutable() const override;
QString userArguments();
void setUserArguments(const QString &arguments);
void setClean(bool clean);
bool isClean() const;
QString makeCommand() const;
- QVariantMap toMap() const;
+ QVariantMap toMap() const override;
signals:
void userArgumentsChanged();
@@ -103,7 +103,7 @@ signals:
protected:
MakeStep(ProjectExplorer::BuildStepList *bsl, MakeStep *bs);
MakeStep(ProjectExplorer::BuildStepList *bsl, Core::Id id);
- virtual bool fromMap(const QVariantMap &map);
+ bool fromMap(const QVariantMap &map) override;
private:
void ctor();