summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2010-05-06 16:23:18 +0200
committerhjk <qtc-committer@nokia.com>2010-05-06 16:59:41 +0200
commitaae681072229339f0d0b0b423940fa4387ab01b7 (patch)
treee5535bf74f0ee3cd71b9d15c73c623a6e7a54b46 /tests
parente1c032f3256318f63dfd67d661099f790e4097fc (diff)
downloadqt-creator-aae681072229339f0d0b0b423940fa4387ab01b7.tar.gz
debugger: fix display of QStringList after a takeFirst();
(cherry picked from commit f9e6a9639519d76be4356797e746d00f263475af)
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/gdbdebugger/simple/app.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/manual/gdbdebugger/simple/app.cpp b/tests/manual/gdbdebugger/simple/app.cpp
index 1705327ffa..732e2c862d 100644
--- a/tests/manual/gdbdebugger/simple/app.cpp
+++ b/tests/manual/gdbdebugger/simple/app.cpp
@@ -1200,6 +1200,7 @@ void testQStringList()
l << "Hello ";
l << " big, ";
l << " fat ";
+ l.takeFirst();
l << " World ";
}