forked from qt-creator/qt-creator
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
This commit is contained in:
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user