Debugger: Enable mouse input/output navigation in LLDB log window

Change-Id: Idee41c6c2769397d6eee3ab74de4afbb94111e25
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
hjk
2013-06-20 09:31:15 +02:00
parent c3649f53bf
commit d42544e037
2 changed files with 11 additions and 5 deletions

View File

@@ -826,7 +826,8 @@ void LldbEngine::readLldbStandardError()
void LldbEngine::readLldbStandardOutput()
{
QByteArray out = m_lldbProc.readAllStandardOutput();
showMessage(_("Lldb stdout: " + out));
//showMessage(_("Lldb stdout: " + out));
showMessage(_(out), LogDebug);
m_inbuffer.append(out);
while (true) {
int pos = m_inbuffer.indexOf("@\n");