aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildstep.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2017-09-01 13:23:02 +0200
committerhjk <hjk@qt.io>2017-09-13 09:24:26 +0000
commit890c1906e6fb2eceb3eaf381b0c298138be3a932 (patch)
treeb8497216ea125ac47621451082202a25000206e7 /src/plugins/projectexplorer/buildstep.h
parent4710e6b4b2df67a9d483c33e1a2b06a4139f7baa (diff)
ProjectExplorer: Re-organize RunConfiguration constructors
The idea is to massage the setup in a way to make implementation of new configurations less error prone by identifying recurring patterns and sharing repetitive code that tends to be forgotten (see Android cloning). The former two lines of constructors (owner-and-id, owner-and-source) are split into a simple, shared, constructor and new setId() and copyFrom() functions. The change is mostly mechanical, some multiple calls to fromMap have been removed, though, some consts added. Otherwise, to keep the patch small it temporarily introduces two helper templates in IRunConfigurationFactory. Also, setId() signatures have not been unified yet. These won't be needed in the final setup. Change-Id: I8c0734496caae744a9883fe6d92c1d8f8e0234ea Reviewed-by: hjk <hjk@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 55a88b0ede..2fe6ee1960 100644
--- a/src/plugins/projectexplorer/buildstep.h
+++ b/src/plugins/projectexplorer/buildstep.h
@@ -99,7 +99,7 @@ signals:
private:
void ctor();
- bool m_enabled;
+ bool m_enabled = true;
};
class PROJECTEXPLORER_EXPORT BuildStepInfo