From: Thiago Macieira Date: Mon, 23 Apr 2012 13:14:24 +0000 (+0200) Subject: Convert these files to ASCII or UTF-8 X-Git-Tag: 071012110112~1346 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ac7afd5ea7ce61f948e78a6d0c752bca7b7f606a;p=profile%2Fivi%2Fqtbase.git Convert these files to ASCII or UTF-8 Remove all non-UTF-8 sequences from source code in Qt. Change-Id: I46d9cb23ef2199894896f171d553b3144822f36c Reviewed-by: Lars Knoll --- diff --git a/tests/auto/corelib/xml/qxmlstream/tst_qxmlstream.cpp b/tests/auto/corelib/xml/qxmlstream/tst_qxmlstream.cpp index 8a60bb1..4442094 100644 --- a/tests/auto/corelib/xml/qxmlstream/tst_qxmlstream.cpp +++ b/tests/auto/corelib/xml/qxmlstream/tst_qxmlstream.cpp @@ -1252,7 +1252,7 @@ void tst_QXmlStream::writeWithCodec() const QVERIFY(codec); writer.setCodec(codec); - const char *latin2 = "hé hé"; + const char *latin2 = "h\xe9 h\xe9"; const QString string = codec->toUnicode(latin2); diff --git a/tests/manual/keypadnavigation/main.cpp b/tests/manual/keypadnavigation/main.cpp index 964d46f..ad53c9f 100644 --- a/tests/manual/keypadnavigation/main.cpp +++ b/tests/manual/keypadnavigation/main.cpp @@ -142,7 +142,7 @@ protected slots: QFontDialog::getFont(0, this); break; case DialogQuestion: - QMessageBox::question(this, QLatin1String("question"), QLatin1String("¿Hola, que tal?")); + QMessageBox::question(this, QLatin1String("question"), QLatin1String("\xbfHola, que tal?")); break; case DialogAboutQt: QMessageBox::aboutQt(this);