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
920880eb
Commit
920880eb
authored
Jun 19, 2009
by
hjk
Browse files
debugger: fix crash on "recheck debugging helper" when not debugging
parent
a360c65e
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggermanager.cpp
View file @
920880eb
...
...
@@ -1533,7 +1533,7 @@ void DebuggerManager::showQtDumperLibraryWarning(const QString &details)
DebuggerStartMode
DebuggerManager
::
startMode
()
const
{
return
m_runControl
->
startMode
()
;
return
m_runControl
?
m_runControl
->
startMode
()
:
NoStartMode
;
}
void
DebuggerManager
::
reloadFullStack
()
...
...
src/plugins/debugger/debuggermanager.h
View file @
920880eb
...
...
@@ -118,6 +118,7 @@ enum DebuggerStatus
enum
DebuggerStartMode
{
NoStartMode
,
StartInternal
,
// Start current start project's binary
StartExternal
,
// Start binary found in file system
AttachExternal
,
// Attach to running process by process id
...
...
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