Debugger: Remove set thread name exceptions from Issue Pane.

Task-number: QTCREATORBUG-9301

Change-Id: I0fed977ab0f0d55cece1dbaf9d6dc9c0c0e870be
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
David Schulz
2013-05-16 14:36:58 -07:00
parent 950a40e899
commit 2989a1e571
4 changed files with 8 additions and 6 deletions

View File

@@ -98,7 +98,7 @@ void formatWindowsException(unsigned long code, quint64 address,
case winExceptionCppException:
str << "C++ exception";
break;
case winExceptionStartupCompleteTrap:
case winExceptionSetThreadName:
str << "Startup complete";
break;
case winExceptionDllNotFound:
@@ -202,7 +202,7 @@ bool isFatalWinException(long code)
switch (code) {
case EXCEPTION_BREAKPOINT:
case EXCEPTION_SINGLE_STEP:
case winExceptionStartupCompleteTrap: // Mysterious exception at start of application
case winExceptionSetThreadName:
case winExceptionRpcServerUnavailable:
case winExceptionRpcServerInvalid:
case winExceptionDllNotFound: