summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2009-12-18 10:53:56 +0100
committerTobias Hunger <tobias.hunger@nokia.com>2009-12-18 11:38:17 +0100
commitd612c534d5ef90d14403b51d828c940ab9d59053 (patch)
treecf21a0dae17a534df7aad7db5f2adc7e0e2fd7f9
parent200a03ed20fc1774b457cb6e4f116dd4fc1a5e29 (diff)
downloadqt-creator-d612c534d5ef90d14403b51d828c940ab9d59053.tar.gz
Actually display output to stderr again
* Forgot to remove one else which made stderr output pass either through the OutputParsers or to the output window. I did not notice that since on window the error messages go to stdOut... sorry. Reviewed-by: con
-rw-r--r--src/plugins/projectexplorer/abstractprocessstep.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/abstractprocessstep.cpp b/src/plugins/projectexplorer/abstractprocessstep.cpp
index 45ff9f27fc..dbf25eb35d 100644
--- a/src/plugins/projectexplorer/abstractprocessstep.cpp
+++ b/src/plugins/projectexplorer/abstractprocessstep.cpp
@@ -246,8 +246,7 @@ void AbstractProcessStep::stdError(const QString &line)
{
if (m_outputParserChain)
m_outputParserChain->stdError(line);
- else
- emit addOutput(QLatin1String("<font color=\"#ff0000\">") + Qt::escape(line) + QLatin1String("</font>"));
+ emit addOutput(QLatin1String("<font color=\"#ff0000\">") + Qt::escape(line) + QLatin1String("</font>"));
}
void AbstractProcessStep::checkForCancel()