diff options
author | hjk <[email protected]> | 2020-08-18 11:33:37 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2020-08-19 07:07:43 +0000 |
commit | b0fb06b8efdd97cb36140103528d41bb2e3c30f3 (patch) | |
tree | d69a08c0174e70570c99c9d209b1616a8e515475 /src/plugins/ios/iosplugin.cpp | |
parent | fb262ce24d3b534cd7390f4ff72a94f6de1c051a (diff) |
iOS: Use a constant from iosconstant.h as deploy step id
Not really a big win here, but in line with what most others do.
Change-Id: I19f100084c8ca4cc7d0de97125efdc519bdfc972
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/ios/iosplugin.cpp')
-rw-r--r-- | src/plugins/ios/iosplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/ios/iosplugin.cpp b/src/plugins/ios/iosplugin.cpp index 5a684f7a823..4922b5d1fb4 100644 --- a/src/plugins/ios/iosplugin.cpp +++ b/src/plugins/ios/iosplugin.cpp @@ -63,7 +63,7 @@ public: addSupportedTargetDeviceType(Constants::IOS_DEVICE_TYPE); addSupportedTargetDeviceType(Constants::IOS_SIMULATOR_TYPE); setDefaultDisplayName(QCoreApplication::translate("Ios::Internal", "Deploy on iOS")); - addInitialStep(IosDeployStepFactory::stepId()); + addInitialStep(Constants::IOS_DEPLOY_STEP_ID); } }; |