diff options
author | Debao Zhang <dbzhang800@gmail.com> | 2012-06-05 23:44:56 -0700 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-06-26 22:38:23 +0200 |
commit | 744a31fe2a89951bb1b9b832bde1eb2f14075f50 (patch) | |
tree | 5a483ff0e252f7c12c9d8e67a6a7cb99193f67eb /tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp | |
parent | 5211f45d58f58e99395a71f0c17e797a854093d6 (diff) | |
download | qtbase-744a31fe2a89951bb1b9b832bde1eb2f14075f50.tar.gz |
tst_qtextscriptengine: make it compilable under MSVC2010
Source files which contain UTF-8 literals can not be compiled
by MSVC with Chinese/Japanese locale.
Change-Id: I5daa2e45c5e1ceb86da91e72288c24018c49c0f6
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com>
Diffstat (limited to 'tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp')
-rw-r--r-- | tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp b/tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp index f0095c63a8..ae3765df10 100644 --- a/tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp +++ b/tests/auto/gui/text/qtextscriptengine/tst_qtextscriptengine.cpp @@ -1289,7 +1289,11 @@ void tst_QTextScriptEngine::thaiWithZWJ() #ifdef Q_OS_WIN QSKIP("This test currently fails on Windows - QTBUG-24565"); #endif - QString s(QString::fromUtf8("รร.ร.“ร…ร”ร\xA0ร本ร") + QChar(0x0363)/*superscript 'a', for testing Inherited class*/); + QString s(QString::fromUtf8("\xe0\xb8\xa3\xe2\x80\x8d\xe0\xb8\xa3\xe2\x80" + "\x8c\x2e\xe0\xb8\xa3\x2e\xe2\x80\x9c\xe0\xb8" + "\xa3\xe2\x80\xa6\xe0\xb8\xa3\xe2\x80\x9d\xe0" + "\xb8\xa3\xa0\xe0\xb8\xa3\xe6\x9c\xac\xe0\xb8\xa3") + + QChar(0x0363)/*superscript 'a', for testing Inherited class*/); QTextLayout layout(s); layout.setCacheEnabled(true); layout.beginLayout(); @@ -1334,7 +1338,7 @@ void tst_QTextScriptEngine::thaiWithZWJ() void tst_QTextScriptEngine::thaiMultipleVowels() { - QString s(QString::fromUtf8("ส")); + QString s(QString::fromUtf8("\xe0\xb8\xaa")); for (int i = 0; i < 100; i++) s += QChar(0x0E47); // Add lots of "VOWEL SIGN MAI TAI KHU N/S-T" stacked on top of the character s += QChar(0x200D); // Now add a zero width joiner (which adds a circle which is hidden) |