aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/genericdirectuploadstep.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/remotelinux/genericdirectuploadstep.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/remotelinux/genericdirectuploadstep.h')
-rw-r--r--src/plugins/remotelinux/genericdirectuploadstep.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/remotelinux/genericdirectuploadstep.h b/src/plugins/remotelinux/genericdirectuploadstep.h
index e7c4da2d8e..7ca49d251f 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();