debugger: Do not automatically kill gdb on internal errors.

This improves overall debugging experience after some "mostly harmless" errors.

Reviewed-by: Friedemann Kleint
Task-number: QTCREATORBUG-2004
This commit is contained in:
hjk
2010-10-12 16:05:38 +02:00
parent 0e6226b009
commit fbe6f96869
2 changed files with 7 additions and 1 deletions

View File

@@ -68,7 +68,9 @@ void SessionEngine::saveSessionData()
unsigned SessionEngine::debuggerCapabilities() const
{
return DebuggerEngine::debuggerCapabilities()
| AddWatcherCapability | WatchpointCapability;
| AddWatcherCapability
| BreakOnThrowAndCatchCapability
| WatchpointCapability;
}
} // namespace Internal