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
Tobias Hunger
qt-creator
Commits
c79476e7
Commit
c79476e7
authored
Oct 16, 2009
by
hjk
Browse files
debbugger: fix item counts > 1000 in QVector dumper
parent
77efc921
Changes
1
Show whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/gdbmacros.cpp
View file @
c79476e7
...
...
@@ -2929,7 +2929,7 @@ static void qDumpQVector(QDumper &d)
d
.
putItemCount
(
"value"
,
n
);
d
.
putItem
(
"valueeditable"
,
"false"
);
d
.
putItem
(
"numchild"
,
n
);
d
.
putItem
(
"numchild"
,
n
n
);
if
(
d
.
dumpChildren
)
{
QByteArray
strippedInnerType
=
stripPointerType
(
d
.
innerType
);
const
char
*
stripped
=
innerIsPointerType
?
strippedInnerType
.
data
()
:
0
;
...
...
Write
Preview
Supports
Markdown
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