Mark all Latin 1 strings with QString::fromLatin1 or QLatin1String

This is in preparation of QString's constructor using UTF-8 by default

Change-Id: Ibd0a585342af572e3f74636deb97c1b6b3afeb9a
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Reviewed-by: Matthew Vogt <matthew.vogt@nokia.com>
Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
This commit is contained in:
Thiago Macieira 2012-04-23 16:46:20 +02:00 committed by Qt by Nokia
parent 1653335c4b
commit bacc47f5a4
1 changed files with 7 additions and 7 deletions

View File

@ -1188,14 +1188,14 @@ void tst_qqmllocale::stringLocaleCompare_data()
// Copied from QString::localeAwareCompare tests
// We don't actually change locale - we just care that String.localeCompare()
// matches QString::localeAwareCompare();
QTest::newRow("swedish1") << QString("\xe5") << QString("\xe4");
QTest::newRow("swedish2") << QString("\xe4") << QString("\xf6");
QTest::newRow("swedish3") << QString("\xe5") << QString("\xf6");
QTest::newRow("swedish4") << QString("z") << QString("\xe5");
QTest::newRow("swedish1") << QString::fromLatin1("\xe5") << QString::fromLatin1("\xe4");
QTest::newRow("swedish2") << QString::fromLatin1("\xe4") << QString::fromLatin1("\xf6");
QTest::newRow("swedish3") << QString::fromLatin1("\xe5") << QString::fromLatin1("\xf6");
QTest::newRow("swedish4") << QString::fromLatin1("z") << QString::fromLatin1("\xe5");
QTest::newRow("german1") << QString("z") << QString("\xe4");
QTest::newRow("german2") << QString("\xe4") << QString("\xf6");
QTest::newRow("german3") << QString("z") << QString("\xf6");
QTest::newRow("german1") << QString::fromLatin1("z") << QString::fromLatin1("\xe4");
QTest::newRow("german2") << QString::fromLatin1("\xe4") << QString::fromLatin1("\xf6");
QTest::newRow("german3") << QString::fromLatin1("z") << QString::fromLatin1("\xf6");
}
void tst_qqmllocale::stringLocaleCompare()