aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildstep.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-10-15 17:04:15 +0200
committerhjk <hjk@qt.io>2018-10-16 11:20:32 +0000
commitded488819af6109586f0499a5019b6b774360d6e (patch)
tree2c2b23af11535826dd28312c8cd5a6f056edd547 /src/plugins/projectexplorer/buildstep.h
parentd58eac632548b9f02e64ad5231ec195c7b951b22 (diff)
ProjectExplorer: Remove BuildStepListWidget::additionalSummaryText()
... and related code. The base implementation returns an empty string, the only re-implemented version in the qmake step returned a member that has been empty since 243145621 "Profile introduction" in 2012. Change-Id: Ifafdc1b88bf4a96cdca5b48d9ccf47b63d9d987a Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/buildstep.h')
-rw-r--r--src/plugins/projectexplorer/buildstep.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/buildstep.h b/src/plugins/projectexplorer/buildstep.h
index 0694cbe7ef..2679515e04 100644
--- a/src/plugins/projectexplorer/buildstep.h
+++ b/src/plugins/projectexplorer/buildstep.h
@@ -174,7 +174,6 @@ public:
BuildStepConfigWidget(BuildStep *step, bool showWidget = true);
virtual QString summaryText() const;
- virtual QString additionalSummaryText() const { return QString(); }
QString displayName() const;
BuildStep *step() const { return m_step; }
@@ -184,7 +183,6 @@ public:
signals:
void updateSummary();
- void updateAdditionalSummary();
private:
BuildStep *m_step = nullptr;