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
Marco Bubke
flatpak-qt-creator
Commits
96eb8e96
Commit
96eb8e96
authored
Mar 08, 2010
by
hjk
Browse files
debugger: always remove the extra nesting level for 'this'
parent
961cdd5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/dumper.py
View file @
96eb8e96
...
...
@@ -1089,7 +1089,7 @@ class Dumper:
#warn("AUTODEREF: %s" % self.autoDerefPointers)
#warn("IS HANDLED: %s" % isHandled)
#warn("RES: %s" % (self.autoDerefPointers and not isHandled))
if
self
.
autoDerefPointers
and
not
isHandled
:
if
(
not
isHandled
)
and
(
self
.
autoDerefPointers
or
name
==
"this"
)
:
## Generic pointer type.
#warn("GENERIC AUTODEREF POINTER: %s" % value.address)
innerType
=
item
.
value
.
type
.
target
()
...
...
Write
Preview
Markdown
is supported
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