aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildstep.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-09-20 09:45:24 +0200
committerhjk <hjk@qt.io>2018-09-20 08:20:24 +0000
commit7bd3f0682842b9324b926091166ee94be75d7bfc (patch)
tree1160841a0e70abedb563309680cf931be45630e1 /src/plugins/projectexplorer/buildstep.h
parentb9db5ea86e30b57f48b757de30f71f5c0a9bd525 (diff)
Make BuildStep::createConfigWidget default implementation non-pure
Amends 760723f7. The intention was actually that the default implementation is not only good enough, but also that there doesn't need to be a re-implementation to call it. Change-Id: I47bd4dba6f8df2826d17696f727252954a5bbabf Reviewed-by: Ulf Hermann <ulf.hermann@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 ddbb91d5d4..72f83c1bb3 100644
--- a/src/plugins/projectexplorer/buildstep.h
+++ b/src/plugins/projectexplorer/buildstep.h
@@ -55,7 +55,7 @@ protected:
public:
virtual bool init(QList<const BuildStep *> &earlierSteps) = 0;
virtual void run(QFutureInterface<bool> &fi) = 0;
- virtual BuildStepConfigWidget *createConfigWidget() = 0;
+ virtual BuildStepConfigWidget *createConfigWidget();
virtual bool immutable() const;
virtual bool runInGuiThread() const;