aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildstep.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-01-10 15:31:44 +0100
committerhjk <hjk@qt.io>2019-01-18 09:11:37 +0000
commitf007bc7593a4079ea7ce15d98df08c0cf8a1d5c9 (patch)
tree04624fcd72d19cde11f42b9b706b035e1b5e65f3 /src/plugins/projectexplorer/buildstep.h
parentca24877c93981221ba6c316d6a0b1fb87c3d8ca4 (diff)
ProjectExplorer: Simplify BuildStep::init() signature
The extra parameter was always computed but used only in one place, and that use got removed lately. Change-Id: Ie10c0107ca70ee97ce03f83294992aab8d1a3ffe 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, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/buildstep.h b/src/plugins/projectexplorer/buildstep.h
index 295c10dbda..2c53ea30cd 100644
--- a/src/plugins/projectexplorer/buildstep.h
+++ b/src/plugins/projectexplorer/buildstep.h
@@ -53,7 +53,7 @@ protected:
explicit BuildStep(BuildStepList *bsl, Core::Id id);
public:
- virtual bool init(QList<const BuildStep *> &earlierSteps) = 0;
+ virtual bool init() = 0;
virtual void run(QFutureInterface<bool> &fi) = 0;
virtual BuildStepConfigWidget *createConfigWidget();