summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2009-01-27 17:15:51 +0100
committerhjk <qtc-committer@nokia.com>2009-01-27 17:15:51 +0100
commit9772ab9904da97df72d3cdc029d7381d126e84bc (patch)
tree240ee7ad8d080862f4675b42f4dc27ac75ee5c54 /tests
parent4b9f407845d7b8ca8fa8d0c44af41c2ccee241d0 (diff)
downloadqt-creator-9772ab9904da97df72d3cdc029d7381d126e84bc.tar.gz
Fixes: debugger: revert change from " to ' style quoting
Details: ' was used interanlly sometimes
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/gdbdebugger/simple/app.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/manual/gdbdebugger/simple/app.cpp b/tests/manual/gdbdebugger/simple/app.cpp
index b719915c47..e5cf4d1a03 100644
--- a/tests/manual/gdbdebugger/simple/app.cpp
+++ b/tests/manual/gdbdebugger/simple/app.cpp
@@ -145,14 +145,33 @@ void testQByteArray()
void testQHash()
{
+#if 0
QHash<int, float> hgg0;
hgg0[11] = 11.0;
hgg0[22] = 22.0;
+ hgg0[22] = 22.0;
+ hgg0[22] = 22.0;
+ hgg0[22] = 22.0;
+ hgg0[22] = 22.0;
+ hgg0[22] = 22.0;
+#endif
+
+#if 1
QHash<QString, float> hgg1;
hgg1["22.0"] = 22.0;
+ hgg1["23.0"] = 22.0;
+ hgg1["24.0"] = 22.0;
+ hgg1["25.0"] = 22.0;
+ hgg1["26.0"] = 22.0;
+ hgg1["27.0"] = 27.0;
+ hgg1["28.0"] = 28.0;
+ hgg1["29.0"] = 29.0;
+
+#endif
+#if 0
QHash<int, QString> hgg2;
hgg2[22] = "22.0";
@@ -165,6 +184,7 @@ void testQHash()
hash.insert("Hallo", QPointer<QObject>(&ob));
hash.insert("Welt", QPointer<QObject>(&ob));
hash.insert(".", QPointer<QObject>(&ob));
+#endif
}
void testQImage()