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
c91aca64
Commit
c91aca64
authored
Nov 04, 2009
by
hjk
Browse files
debugger: fix item count for QLists with more than 1000 elements
Reviewed-by: Oswald Buddenhagen
parent
f2a03829
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/gdbmacros.cpp
View file @
c91aca64
...
...
@@ -1639,7 +1639,7 @@ static void qDumpQList(QDumper &d)
}
qCheckAccess
(
pdata
);
d
.
putItemCount
(
"value"
,
n
);
d
.
putItemCount
(
"value"
,
n
n
);
d
.
putItem
(
"valueeditable"
,
"false"
);
d
.
putItem
(
"numchild"
,
n
);
if
(
d
.
dumpChildren
)
{
...
...
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