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
Tobias Hunger
qt-creator
Commits
d1655163
Commit
d1655163
authored
Sep 27, 2010
by
hjk
Browse files
debugger: fix enabled state of 'start external'
Reviewed-by: Friedemann Kleint
parent
b33b5e52
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggerplugin.cpp
View file @
d1655163
...
...
@@ -2283,10 +2283,7 @@ void DebuggerPluginPrivate::updateState(DebuggerEngine *engine)
core
->
updateAdditionalContexts
(
m_interruptibleContext
,
Core
::
Context
());
}
const
bool
canStartOrContinue
=
m_state
==
DebuggerNotReady
||
m_state
==
InferiorStopOk
;
m_startExternalAction
->
setEnabled
(
canStartOrContinue
);
m_startExternalAction
->
setEnabled
(
true
);
m_attachExternalAction
->
setEnabled
(
true
);
#ifdef Q_OS_WIN
m_attachCoreAction
->
setEnabled
(
false
);
...
...
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