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
1a772601
Commit
1a772601
authored
Aug 27, 2009
by
hjk
Browse files
debugger: fix auto text for QStringList in QVariant;
parent
9b34946f
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/auto/debugger/tst_dumpers.cpp
View file @
1a772601
...
...
@@ -2236,12 +2236,11 @@ void tst_Debugger::dumpQVariant_QString()
void
tst_Debugger
::
dumpQVariant_QStringList
()
{
QVariant
v
=
QStringList
()
<<
"Hi"
;
return
;
// FIXME
testDumper
(
"value='(QStringList) ',type='$T',"
"numchild='1',children=[{name='value',"
"exp='(*('myns::QStringList'*)3215364300)',"
"type='QStringList',numchild='1'}]"
,
QVariant
v
=
QStringList
()
<<
"Hi"
;
testDumper
(
"value='(QStringList) ',type='$T',numchild='1',"
"children=[{name='value',exp='(*('myns::QStringList'*)%)',"
"type='QStringList',numchild='1'}]"
<<
QByteArray
::
number
(
quintptr
(
&
v
)),
&
v
,
NS
"QVariant"
,
true
);
}
...
...
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