summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/tools')
-rw-r--r--tests/auto/corelib/tools/collections/tst_collections.cpp8
-rw-r--r--tests/auto/corelib/tools/qhash/tst_qhash.cpp8
2 files changed, 8 insertions, 8 deletions
diff --git a/tests/auto/corelib/tools/collections/tst_collections.cpp b/tests/auto/corelib/tools/collections/tst_collections.cpp
index 85c6f7e6e1..50f9f155d0 100644
--- a/tests/auto/corelib/tools/collections/tst_collections.cpp
+++ b/tests/auto/corelib/tools/collections/tst_collections.cpp
@@ -1121,17 +1121,17 @@ void tst_Collections::hash()
Hash hash;
QString key = QLatin1String(" ");
for (int i = 0; i < 10; ++i) {
- key[0] = i + '0';
+ key[0] = QChar(i + '0');
for (int j = 0; j < 10; ++j) {
- key[1] = j + '0';
+ key[1] = QChar(j + '0');
hash.insert(key, "V" + key);
}
}
for (int i = 0; i < 10; ++i) {
- key[0] = i + '0';
+ key[0] = QChar(i + '0');
for (int j = 0; j < 10; ++j) {
- key[1] = j + '0';
+ key[1] = QChar(j + '0');
hash.remove(key);
}
}
diff --git a/tests/auto/corelib/tools/qhash/tst_qhash.cpp b/tests/auto/corelib/tools/qhash/tst_qhash.cpp
index 359095c3d0..f61dfda720 100644
--- a/tests/auto/corelib/tools/qhash/tst_qhash.cpp
+++ b/tests/auto/corelib/tools/qhash/tst_qhash.cpp
@@ -309,17 +309,17 @@ void tst_QHash::insert1()
Hash hash;
QString key = QLatin1String(" ");
for (int i = 0; i < 10; ++i) {
- key[0] = i + '0';
+ key[0] = QChar(i + '0');
for (int j = 0; j < 10; ++j) {
- key[1] = j + '0';
+ key[1] = QChar(j + '0');
hash.insert(key, "V" + key);
}
}
for (int i = 0; i < 10; ++i) {
- key[0] = i + '0';
+ key[0] = QChar(i + '0');
for (int j = 0; j < 10; ++j) {
- key[1] = j + '0';
+ key[1] = QChar(j + '0');
hash.remove(key);
}
}