Skip to content
Snippets Groups Projects
Commit 9d7a054c authored by dt's avatar dt
Browse files

Fix escaped output in the compile output window

parent bf33e654
No related merge requests found
...@@ -248,7 +248,7 @@ void AbstractProcessStep::stdOutput(const QString &line) ...@@ -248,7 +248,7 @@ void AbstractProcessStep::stdOutput(const QString &line)
if (m_outputParserChain) if (m_outputParserChain)
m_outputParserChain->stdOutput(line); m_outputParserChain->stdOutput(line);
QTextCharFormat textCharFormat; QTextCharFormat textCharFormat;
emit addOutput(Qt::escape(line), textCharFormat); emit addOutput(line, textCharFormat);
} }
void AbstractProcessStep::processReadyReadStdError() void AbstractProcessStep::processReadyReadStdError()
......
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