summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/io
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/io')
-rw-r--r--tests/auto/corelib/io/qfile/tst_qfile.cpp2
-rw-r--r--tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp10
2 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/corelib/io/qfile/tst_qfile.cpp b/tests/auto/corelib/io/qfile/tst_qfile.cpp
index e5b7051997..e408cd3e48 100644
--- a/tests/auto/corelib/io/qfile/tst_qfile.cpp
+++ b/tests/auto/corelib/io/qfile/tst_qfile.cpp
@@ -3182,7 +3182,7 @@ void tst_QFile::mapResource()
QCOMPARE(file.error(), error);
QVERIFY((error == QFile::NoError) ? (memory != 0) : (memory == 0));
if (error == QFile::NoError)
- QCOMPARE(QString(memory[0]), QString::number(offset + 1));
+ QCOMPARE(QString(QChar(memory[0])), QString::number(offset + 1));
QVERIFY(file.unmap(memory));
}
diff --git a/tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp b/tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp
index da9477ca84..4b77820028 100644
--- a/tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp
+++ b/tests/auto/corelib/io/qurlinternal/tst_qurlinternal.cpp
@@ -517,23 +517,23 @@ void tst_QUrlInternal::nameprep_highcodes_data()
QTest::addColumn<int>("rc");
{
- QChar st[] = { '-', 0xd801, 0xdc1d, 'a' };
- QChar se[] = { '-', 0xd801, 0xdc45, 'a' };
+ QChar st[] = { '-', QChar(0xd801), QChar(0xdc1d), 'a' };
+ QChar se[] = { '-', QChar(0xd801), QChar(0xdc45), 'a' };
QTest::newRow("highcodes (U+1041D)")
<< QString(st, sizeof(st)/sizeof(st[0]))
<< QString(se, sizeof(se)/sizeof(se[0]))
<< QString() << 0 << 0;
}
{
- QChar st[] = { 0x011C, 0xd835, 0xdf6e, 0x0110 };
- QChar se[] = { 0x011D, 0x03C9, 0x0111 };
+ QChar st[] = { QChar(0x011C), QChar(0xd835), QChar(0xdf6e), QChar(0x0110) };
+ QChar se[] = { QChar(0x011D), QChar(0x03C9), QChar(0x0111) };
QTest::newRow("highcodes (U+1D76E)")
<< QString(st, sizeof(st)/sizeof(st[0]))
<< QString(se, sizeof(se)/sizeof(se[0]))
<< QString() << 0 << 0;
}
{
- QChar st[] = { 'D', 'o', '\'', 0x2060, 'h' };
+ QChar st[] = { 'D', 'o', '\'', QChar(0x2060), 'h' };
QChar se[] = { 'd', 'o', '\'', 'h' };
QTest::newRow("highcodes (D, o, ', U+2060, h)")
<< QString(st, sizeof(st)/sizeof(st[0]))