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
336dc4e5
Commit
336dc4e5
authored
Jan 11, 2010
by
hjk
Browse files
debugger: fix reporting of "no locals"
parent
e162f18e
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/dumper.py
View file @
336dc4e5
...
...
@@ -436,7 +436,11 @@ class FrameCommand(gdb.Command):
d
.
pushOutput
()
watchers
=
d
.
safeoutput
print
(
'data=['
+
locals
+
','
+
watchers
+
']
\n
'
)
sep
=
""
if
len
(
locals
)
and
len
(
watchers
):
sep
=
","
print
(
'data=['
+
locals
+
sep
+
watchers
+
']
\n
'
)
def
handleWatch
(
self
,
d
,
exp
,
iname
):
...
...
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