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
Tobias Hunger
qt-creator
Commits
25d75c7f
Commit
25d75c7f
authored
Oct 16, 2009
by
hjk
Browse files
debugger: allow fancy/non-fancy mode for new dumpers
parent
73aa3e21
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
25d75c7f
...
...
@@ -3381,7 +3381,9 @@ void GdbEngine::updateLocals()
if
(
isSynchroneous
())
{
QStringList
expanded
=
m_manager
->
watchHandler
()
->
expandedINames
().
toList
();
postCommand
(
_
(
"bb %1"
).
arg
(
expanded
.
join
(
_
(
","
))),
postCommand
(
_
(
"bb %1 %2"
)
.
arg
(
int
(
theDebuggerBoolSetting
(
UseDebuggingHelpers
)))
.
arg
(
expanded
.
join
(
_
(
","
))),
WatchUpdate
,
CB
(
handleStackFrame1
));
postCommand
(
_
(
"p 0"
),
WatchUpdate
,
CB
(
handleStackFrame2
));
}
else
{
...
...
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