Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
49655d62
Commit
49655d62
authored
Jan 12, 2011
by
Christian Kamm
Browse files
debugger: Slightly improve compile fix for linux.
Reviewed-by: Friedemann Kleint
parent
9f6e0091
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/cdb/cdbengine.cpp
View file @
49655d62
...
...
@@ -1402,13 +1402,12 @@ unsigned CdbEngine::examineStopReason(const QByteArray &messageIn,
if
(
reason
==
"exception"
)
{
WinException
exception
;
exception
.
fromGdbMI
(
stopReason
);
QString
description
;
QString
description
=
exception
.
toString
()
;
#ifdef Q_OS_WIN
// It is possible to hit on a startup trap while stepping (if something
// pulls DLLs. Avoid showing a 'stopped' Message box.
if
(
exception
.
exceptionCode
==
winExceptionStartupCompleteTrap
)
return
StopNotifyStop
;
description
=
exception
.
toString
();
// WOW 64 breakpoint: just report in log and continue
if
(
exception
.
exceptionCode
==
winExceptionWX86Breakpoint
)
{
*
message
=
description
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment