debugger: more verbose status message on sigsegv even if messagebox was disabled

This commit is contained in:
hjk
2011-02-23 11:28:20 +01:00
parent 5f38a26c9e
commit 66896e1908
2 changed files with 4 additions and 4 deletions

View File

@@ -1523,7 +1523,7 @@ QString DebuggerEngine::msgStopped(const QString &reason)
QString DebuggerEngine::msgStoppedBySignal(const QString &meaning,
const QString &name)
{
return tr("Stopped: %1 by signal %2.").arg(meaning, name);
return tr("Stopped: %1 (Signal %2).").arg(meaning, name);
}
QString DebuggerEngine::msgStoppedByException(const QString &description,