Skip to content
GitLab
Menu
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
06a3bf98
Commit
06a3bf98
authored
Sep 10, 2010
by
hjk
Browse files
debugger: don't suppress previous error messages.
parent
ff0ac20a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggerrunner.cpp
View file @
06a3bf98
...
...
@@ -465,12 +465,12 @@ bool DebuggerRunControl::checkDebugConfiguration(int toolChain,
case
ProjectExplorer
::
ToolChain
::
RVCT_ARMV6
:
success
=
checkGdbConfiguration
(
toolChain
,
errorMessage
,
settingsPage
);
if
(
!
success
)
*
errorMessage
=
msgEngineNotAvailable
(
"Gdb"
);
*
errorMessage
+
=
msgEngineNotAvailable
(
"Gdb"
);
break
;
case
ProjectExplorer
::
ToolChain
::
MSVC
:
success
=
checkCdbConfiguration
(
toolChain
,
errorMessage
,
settingsPage
);
if
(
!
success
)
{
*
errorMessage
=
msgEngineNotAvailable
(
"Cdb"
);
*
errorMessage
+
=
msgEngineNotAvailable
(
"Cdb"
);
if
(
settingsPage
)
*
settingsPage
=
QLatin1String
(
"Cdb"
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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