Skip to content
Snippets Groups Projects
Commit d612c534 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

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
parent 200a03ed
No related branches found
No related tags found
No related merge requests found
...@@ -246,8 +246,7 @@ void AbstractProcessStep::stdError(const QString &line) ...@@ -246,8 +246,7 @@ void AbstractProcessStep::stdError(const QString &line)
{ {
if (m_outputParserChain) if (m_outputParserChain)
m_outputParserChain->stdError(line); 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() void AbstractProcessStep::checkForCancel()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment