aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/deployconfiguration.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-02-21 15:18:40 +0100
committerhjk <hjk@qt.io>2020-02-21 17:30:15 +0000
commitd45e123b8e14cc63e1a5453a18ee976ecd5ff742 (patch)
treed8554b49720f12b3458ce9591cf332c991c500bb /src/plugins/projectexplorer/deployconfiguration.h
parent63b0c79a46538e39eb73e7d364bae8f6205fce92 (diff)
ProjectExplorer: Remove pure ProjectConfiguration::isActive function
It's never used polymorphically, and only caused an unused implementation in BuildStep. Change-Id: I5fbd34925788ca22960a2f522eef75be3137c67b Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/deployconfiguration.h')
-rw-r--r--src/plugins/projectexplorer/deployconfiguration.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/deployconfiguration.h b/src/plugins/projectexplorer/deployconfiguration.h
index 156fb526749..6cd85b62a3e 100644
--- a/src/plugins/projectexplorer/deployconfiguration.h
+++ b/src/plugins/projectexplorer/deployconfiguration.h
@@ -56,7 +56,7 @@ public:
bool fromMap(const QVariantMap &map) override;
QVariantMap toMap() const override;
- bool isActive() const override;
+ bool isActive() const;
bool usesCustomDeploymentData() const { return m_usesCustomDeploymentData; }
void setUseCustomDeploymentData(bool enabled) { m_usesCustomDeploymentData = enabled; }