diff options
author | hjk <hjk@qt.io> | 2019-01-18 11:32:53 +0100 |
---|---|---|
committer | hjk <hjk@qt.io> | 2019-01-21 12:05:28 +0000 |
commit | 372fbf9c05a5fc8e0c55e9aaf51b413c4fe27eff (patch) | |
tree | 5c762c004bb121f2feafb07e9565605d14e31289 /src/plugins/ios/iosdeploystepfactory.cpp | |
parent | 910496130cfc3d68ff6b7ae992f8cffe6d49b6da (diff) | |
download | qt-creator-372fbf9c05a5fc8e0c55e9aaf51b413c4fe27eff.tar.gz |
Use new DeployConfigurationFactory::addInitialStep in some cases
Less code, less classes.
Change-Id: I3ba9920f4f389e14c67cd8c5d937a4b4659865e7
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/ios/iosdeploystepfactory.cpp')
-rw-r--r-- | src/plugins/ios/iosdeploystepfactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/ios/iosdeploystepfactory.cpp b/src/plugins/ios/iosdeploystepfactory.cpp index cb748edd94..bd92f96aac 100644 --- a/src/plugins/ios/iosdeploystepfactory.cpp +++ b/src/plugins/ios/iosdeploystepfactory.cpp @@ -35,7 +35,7 @@ namespace Internal { IosDeployStepFactory::IosDeployStepFactory() { - registerStep<IosDeployStep>(IosDeployStep::Id); + registerStep<IosDeployStep>(IosDeployStep::stepId()); setDisplayName(IosDeployStep::tr("Deploy to iOS device or emulator")); setSupportedStepList(ProjectExplorer::Constants::BUILDSTEPS_DEPLOY); setSupportedDeviceTypes({Constants::IOS_DEVICE_TYPE, Constants::IOS_SIMULATOR_TYPE}); |