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
78a46571
Commit
78a46571
authored
Jun 16, 2009
by
Oswald Buddenhagen
Browse files
add test for pointer list with null pointers
parent
86ca8f4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/manual/gdbdebugger/simple/app.cpp
View file @
78a46571
...
...
@@ -1109,6 +1109,13 @@ int main(int argc, char *argv[])
QStringList
list
;
list
<<
"aaa"
<<
"bbb"
<<
"cc"
;
QList
<
const
char
*>
list2
;
list2
<<
"foo"
;
list2
<<
"bar"
;
list2
<<
0
;
list2
<<
"baz"
;
list2
<<
0
;
testQStandardItemModel
();
testQImage
();
testNoArgumentName
(
1
,
2
,
3
);
...
...
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