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
e07ed90b
Commit
e07ed90b
authored
Jan 30, 2009
by
Oswald Buddenhagen
Browse files
more elegant
parent
e2079e32
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdbengine.cpp
View file @
e07ed90b
...
...
@@ -1567,9 +1567,7 @@ bool GdbEngine::startDebugger()
q
->
showStatusMessage
(
tr
(
"Starting Debugger: "
)
+
q
->
settings
()
->
m_gdbCmd
+
' '
+
gdbArgs
.
join
(
" "
));
m_gdbProc
.
start
(
q
->
settings
()
->
m_gdbCmd
,
gdbArgs
);
m_gdbProc
.
waitForStarted
();
if
(
m_gdbProc
.
state
()
!=
QProcess
::
Running
)
{
if
(
!
m_gdbProc
.
waitForStarted
())
{
QMessageBox
::
critical
(
q
->
mainWindow
(),
tr
(
"Debugger Startup Failure"
),
tr
(
"Cannot start debugger: %1"
).
arg
(
m_gdbProc
.
errorString
()));
m_outputCollector
.
shutdown
();
...
...
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