summaryrefslogtreecommitdiff
path: root/src/plugins/ios/iosdeploystep.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2017-01-12 10:59:12 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2017-01-19 16:08:57 +0000
commitc05a3fdb3de59a3b9bd91dafee20453d5a138cfc (patch)
tree7d0e56d73efc477b5cfa195781f7971c4410219e /src/plugins/ios/iosdeploystep.cpp
parent0e874ba59935cfaba1c4c0e12a423064814ddaa4 (diff)
downloadqt-creator-c05a3fdb3de59a3b9bd91dafee20453d5a138cfc.tar.gz
Give the values of BuildStep::OutputFormat better names
The old ones did not convey their meaning very well. In particular, NormalOutput and MessageOutput were easily confused. Change-Id: Ia0a8c1b1c366ab3f5c59f751b37b8b1f68f6831d Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'src/plugins/ios/iosdeploystep.cpp')
-rw-r--r--src/plugins/ios/iosdeploystep.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/ios/iosdeploystep.cpp b/src/plugins/ios/iosdeploystep.cpp
index 420b7bf9ae..2fd786d68e 100644
--- a/src/plugins/ios/iosdeploystep.cpp
+++ b/src/plugins/ios/iosdeploystep.cpp
@@ -108,7 +108,7 @@ bool IosDeployStep::init(QList<const BuildStep *> &earlierSteps)
m_deviceType = runConfig->deviceType();
} else {
emit addOutput(tr("Error: no device available, deploy failed."),
- BuildStep::ErrorMessageOutput);
+ BuildStep::OutputFormat::ErrorMessage);
return false;
}
return true;
@@ -210,7 +210,7 @@ void IosDeployStep::handleErrorMsg(IosToolHandler *handler, const QString &msg)
TaskHub::addTask(Task::Warning,
tr("The Info.plist might be incorrect."),
ProjectExplorer::Constants::TASK_CATEGORY_DEPLOYMENT);
- emit addOutput(msg, BuildStep::ErrorMessageOutput);
+ emit addOutput(msg, BuildStep::OutputFormat::ErrorMessage);
}
BuildStepConfigWidget *IosDeployStep::createConfigWidget()