summaryrefslogtreecommitdiff
path: root/src/plugins/ios/iosdeploystep.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-10-22 17:56:04 +0200
committerhjk <hjk@qt.io>2018-10-23 14:12:39 +0000
commit0f5d5dbfe48f7abb9ca83ffa3dfaa6ed88db58b3 (patch)
treed48aa49fb61ccb74ae3479f0bf8326864d0f8c97 /src/plugins/ios/iosdeploystep.cpp
parent8471ce4331ec06e7dc6060014e0d6c35e34a78bc (diff)
downloadqt-creator-0f5d5dbfe48f7abb9ca83ffa3dfaa6ed88db58b3.tar.gz
ProjectExplorer: Make BuildStep::immutable use a data member
Default to false, remove all no-op reimplementations. And rename the getter to isImmutable according to the rules. Change-Id: I8cce79d88fb59badfa1cffcf30a46f7ff3b09e8b Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/ios/iosdeploystep.cpp')
-rw-r--r--src/plugins/ios/iosdeploystep.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/ios/iosdeploystep.cpp b/src/plugins/ios/iosdeploystep.cpp
index b311bd5433..d4ace68b61 100644
--- a/src/plugins/ios/iosdeploystep.cpp
+++ b/src/plugins/ios/iosdeploystep.cpp
@@ -59,6 +59,7 @@ const Core::Id IosDeployStep::Id("Qt4ProjectManager.IosDeployStep");
IosDeployStep::IosDeployStep(BuildStepList *parent)
: BuildStep(parent, Id)
{
+ setImmutable(true);
updateDisplayNames();
connect(DeviceManager::instance(), &DeviceManager::updated,
this, &IosDeployStep::updateDisplayNames);