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
f2042b8b
Commit
f2042b8b
authored
Jun 19, 2009
by
hjk
Browse files
debugger: fix dumper for QList<T*>
parent
bdafb8bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/gdbmacros.cpp
View file @
f2042b8b
...
...
@@ -1390,7 +1390,7 @@ static void qDumpQList(QDumper &d)
if
(
innerTypeIsPointer
)
{
void
*
p
=
ldata
.
d
->
array
+
i
+
pdata
->
begin
;
P
(
d
,
"saddr"
,
p
);
if
(
p
)
{
if
(
*
(
void
**
)
p
)
{
//P(d, "value","@" << p);
qDumpInnerValue
(
d
,
strippedInnerType
.
data
(),
deref
(
p
));
}
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