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
edefcfe4
Commit
edefcfe4
authored
Jan 15, 2009
by
Oswald Buddenhagen
Browse files
error messagebox upon failure to start up dbg
parent
a5f6281f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdbengine.cpp
View file @
edefcfe4
...
...
@@ -1530,8 +1530,11 @@ bool GdbEngine::startDebugger()
m_gdbProc
.
start
(
q
->
settings
()
->
m_gdbCmd
,
gdbArgs
);
m_gdbProc
.
waitForStarted
();
if
(
m_gdbProc
.
state
()
!=
QProcess
::
Running
)
if
(
m_gdbProc
.
state
()
!=
QProcess
::
Running
)
{
QMessageBox
::
critical
(
q
->
mainWindow
(),
tr
(
"Debugger Startup Failure"
),
tr
(
"Cannot start debugger: %1"
).
arg
(
m_gdbProc
.
errorString
()));
return
false
;
}
q
->
showStatusMessage
(
tr
(
"Gdb Running"
));
...
...
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