debugger: ignore new cmd-param-changed notification

Might be useful in the future. Not now.

Change-Id: I7255df2d56b477aaf30ebf4b9823f12e8713931c
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-10-15 16:16:51 +02:00
parent 61b2926a1a
commit 1982a3b5a5

View File

@@ -643,6 +643,9 @@ void GdbEngine::handleResponse(const QByteArray &buff)
if (!handler->isOneShot(id)) if (!handler->isOneShot(id))
handler->removeAlienBreakpoint(id); handler->removeAlienBreakpoint(id);
} }
} else if (asyncClass == "cmd-param-changed") {
// New since 2012-08-09
// "{param="debug remote",value="1"}"
} else { } else {
qDebug() << "IGNORED ASYNC OUTPUT" qDebug() << "IGNORED ASYNC OUTPUT"
<< asyncClass << result.toString(); << asyncClass << result.toString();