Debugger: Fix LLDB dumper result reading on Windows

Change-Id: Ic9b71a5fac0b04735851adfb91117b9dc8bd8462
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-09-04 08:48:53 +02:00
parent 683c976b46
commit 2930754acf

View File

@@ -990,6 +990,7 @@ void LldbEngine::readLldbStandardError()
void LldbEngine::readLldbStandardOutput()
{
QByteArray out = m_lldbProc.readAllStandardOutput();
out.replace("\r\n", "\n");
showMessage(_(out));
m_inbuffer.append(out);
while (true) {