thread-group-started was already handled
This commit is contained in:
hjk
2010-04-07 15:18:11 +02:00
parent f3caf7c067
commit 8e0483a4ba

View File

@@ -438,13 +438,11 @@ void GdbEngine::handleResponse(const QByteArray &buff)
invalidateSourcesList();
} else if (asyncClass == "thread-group-added") {
// 7.1-symbianelf has "{id="i1"}"
} else if (asyncClass == "thread-group-started") {
// 7.1-symbianelf has "{id="i1",pid="42000"}"
} else if (asyncClass == "thread-group-created"
|| asyncClass == "thread-group-started") {
// Archer had only "{id="28902"}" at some point of 6.8.x.
// *-created seems to be standard nowadays, but in early
// 7.0.x, there was a *-started instead.
// *-started seems to be standard in 7.1, but in early
// 7.0.x, there was a *-created instead.
int progress = m_progress->progressValue();
m_progress->setProgressValue(qMin(70, progress + 1));
QByteArray id = result.findChild("id").data();