aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/remotelinuxrunconfiguration.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/remotelinuxrunconfiguration.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/remotelinuxrunconfiguration.h')
-rw-r--r--src/plugins/remotelinux/remotelinuxrunconfiguration.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/plugins/remotelinux/remotelinuxrunconfiguration.h b/src/plugins/remotelinux/remotelinuxrunconfiguration.h
index dac5d61da1..0942696f7b 100644
--- a/src/plugins/remotelinux/remotelinuxrunconfiguration.h
+++ b/src/plugins/remotelinux/remotelinuxrunconfiguration.h
@@ -61,28 +61,28 @@ class REMOTELINUX_EXPORT RemoteLinuxRunConfiguration : public AbstractRemoteLinu
public:
RemoteLinuxRunConfiguration(ProjectExplorer::Target *parent, Core::Id id,
- const QString &targetName);
- ~RemoteLinuxRunConfiguration();
+ const QString &targetName);
+ ~RemoteLinuxRunConfiguration() override;
- bool isEnabled() const;
- QWidget *createConfigurationWidget();
- Utils::OutputFormatter *createOutputFormatter() const;
+ bool isEnabled() const override;
+ QWidget *createConfigurationWidget() override;
+ Utils::OutputFormatter *createOutputFormatter() const override;
- virtual Utils::Environment environment() const;
+ virtual Utils::Environment environment() const override;
- QString localExecutableFilePath() const;
+ QString localExecutableFilePath() const override;
QString defaultRemoteExecutableFilePath() const;
- QString remoteExecutableFilePath() const;
- QStringList arguments() const;
+ QString remoteExecutableFilePath() const override;
+ QStringList arguments() const override;
void setArguments(const QString &args);
- QString workingDirectory() const;
+ QString workingDirectory() const override;
void setWorkingDirectory(const QString &wd);
void setAlternateRemoteExecutable(const QString &exe);
QString alternateRemoteExecutable() const;
void setUseAlternateExecutable(bool useAlternate);
bool useAlternateExecutable() const;
- QVariantMap toMap() const;
+ QVariantMap toMap() const override;
static const char *IdPrefix;
@@ -93,7 +93,7 @@ signals:
protected:
RemoteLinuxRunConfiguration(ProjectExplorer::Target *parent,
RemoteLinuxRunConfiguration *source);
- bool fromMap(const QVariantMap &map);
+ bool fromMap(const QVariantMap &map) override;
QString defaultDisplayName();
protected slots: