summaryrefslogtreecommitdiff
path: root/src/plugins/qbsprojectmanager/qbscleanstep.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/qbsprojectmanager/qbscleanstep.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/qbsprojectmanager/qbscleanstep.cpp')
-rw-r--r--src/plugins/qbsprojectmanager/qbscleanstep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qbsprojectmanager/qbscleanstep.cpp b/src/plugins/qbsprojectmanager/qbscleanstep.cpp
index faaf2a04e4..02ae120956 100644
--- a/src/plugins/qbsprojectmanager/qbscleanstep.cpp
+++ b/src/plugins/qbsprojectmanager/qbscleanstep.cpp
@@ -200,7 +200,7 @@ void QbsCleanStep::createTaskAndOutput(ProjectExplorer::Task::TaskType type, con
Utils::FileName::fromString(file), line,
ProjectExplorer::Constants::TASK_CATEGORY_COMPILE);
emit addTask(task, 1);
- emit addOutput(message, NormalOutput);
+ emit addOutput(message, OutputFormat::Stdout);
}
void QbsCleanStep::setDryRun(bool dr)