aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qbsprojectmanager/qbsinstallstep.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-12-20 17:05:30 +0100
committerhjk <hjk@qt.io>2020-01-09 11:26:01 +0000
commitc95bde6f6a638ddf4197c1fb56968de8794c9b35 (patch)
tree0b282897bdf5db53355ea95e2117e214b0c7cdf3 /src/plugins/qbsprojectmanager/qbsinstallstep.cpp
parent2f5365bf6102e44c9af1c330601a22f4d34f9631 (diff)
ProjectExplorer: Pass Id to BuildStep constructor
Allows to use constants in fewer places, similar to what e.g. RunConfiguration does. Change-Id: I9d049128206c4acf0ce14b06b66d6c090a7c5242 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/qbsprojectmanager/qbsinstallstep.cpp')
-rw-r--r--src/plugins/qbsprojectmanager/qbsinstallstep.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qbsprojectmanager/qbsinstallstep.cpp b/src/plugins/qbsprojectmanager/qbsinstallstep.cpp
index 1e4f213770..b3f64e7663 100644
--- a/src/plugins/qbsprojectmanager/qbsinstallstep.cpp
+++ b/src/plugins/qbsprojectmanager/qbsinstallstep.cpp
@@ -87,8 +87,8 @@ private:
// QbsInstallStep:
// --------------------------------------------------------------------
-QbsInstallStep::QbsInstallStep(ProjectExplorer::BuildStepList *bsl) :
- ProjectExplorer::BuildStep(bsl, Constants::QBS_INSTALLSTEP_ID)
+QbsInstallStep::QbsInstallStep(BuildStepList *bsl, Core::Id id)
+ : BuildStep(bsl, id)
{
setDisplayName(tr("Qbs Install"));