debugger: improve launch progress display

This commit is contained in:
hjk
2010-07-22 12:02:09 +02:00
parent d721e55a12
commit aae95a24a2
3 changed files with 23 additions and 13 deletions

View File

@@ -496,10 +496,12 @@ void GdbEngine::handleResponse(const QByteArray &buff)
// Show some messages to give the impression something happens.
if (data.startsWith("Reading symbols from ")) {
showStatusMessage(tr("Reading %1...").arg(_(data.mid(21))), 1000);
progressPing();
invalidateSourcesList();
} else if (data.startsWith("[New ") || data.startsWith("[Thread ")) {
if (data.endsWith('\n'))
data.chop(1);
progressPing();
showStatusMessage(_(data), 1000);
}
break;