diff options
author | Tobias Hunger <[email protected]> | 2015-11-13 11:06:27 +0100 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2015-11-16 10:14:32 +0000 |
commit | 0e278e9efeffef2de86decfc5e415a94d7234b4f (patch) | |
tree | ef4ca0117d5ab3dc65e7f707a9d626cc2dd48a0d /src/plugins/remotelinux/genericdirectuploadstep.h | |
parent | ca29cbfc8a4cd2fad3556f0c98febc4692894265 (diff) |
ProjectConfiguration: Sprinkle override and explicit over the code
Change-Id: I2aa3a32a0d30f1d122977d94d4109227dea6bbd7
Reviewed-by: Niels Weber <[email protected]>
Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/remotelinux/genericdirectuploadstep.h')
-rw-r--r-- | src/plugins/remotelinux/genericdirectuploadstep.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/remotelinux/genericdirectuploadstep.h b/src/plugins/remotelinux/genericdirectuploadstep.h index e7c4da2d8e0..7ca49d251f9 100644 --- a/src/plugins/remotelinux/genericdirectuploadstep.h +++ b/src/plugins/remotelinux/genericdirectuploadstep.h @@ -44,10 +44,10 @@ class REMOTELINUX_EXPORT GenericDirectUploadStep : public AbstractRemoteLinuxDep public: GenericDirectUploadStep(ProjectExplorer::BuildStepList *bsl, Core::Id id); GenericDirectUploadStep(ProjectExplorer::BuildStepList *bsl, GenericDirectUploadStep *other); - ~GenericDirectUploadStep(); + ~GenericDirectUploadStep() override; - ProjectExplorer::BuildStepConfigWidget *createConfigWidget(); - bool initInternal(QString *error = 0); + ProjectExplorer::BuildStepConfigWidget *createConfigWidget() override; + bool initInternal(QString *error = 0) override; void setIncrementalDeployment(bool incremental); bool incrementalDeployment() const; @@ -59,9 +59,9 @@ public: static QString displayName(); private: - GenericDirectUploadService *deployService() const; - bool fromMap(const QVariantMap &map); - QVariantMap toMap() const; + GenericDirectUploadService *deployService() const override; + bool fromMap(const QVariantMap &map) override; + QVariantMap toMap() const override; void ctor(); |