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 <lars.knoll@nokia.com>
This commit is contained in:
parent
04a84400ea
commit
ac7afd5ea7
@ -1252,7 +1252,7 @@ void tst_QXmlStream::writeWithCodec() const
|
|||||||
QVERIFY(codec);
|
QVERIFY(codec);
|
||||||
writer.setCodec(codec);
|
writer.setCodec(codec);
|
||||||
|
|
||||||
const char *latin2 = "hé hé";
|
const char *latin2 = "h\xe9 h\xe9";
|
||||||
const QString string = codec->toUnicode(latin2);
|
const QString string = codec->toUnicode(latin2);
|
||||||
|
|
||||||
|
|
||||||
|
@ -142,7 +142,7 @@ protected slots:
|
|||||||
QFontDialog::getFont(0, this);
|
QFontDialog::getFont(0, this);
|
||||||
break;
|
break;
|
||||||
case DialogQuestion:
|
case DialogQuestion:
|
||||||
QMessageBox::question(this, QLatin1String("question"), QLatin1String("¿Hola, que tal?"));
|
QMessageBox::question(this, QLatin1String("question"), QLatin1String("\xbfHola, que tal?"));
|
||||||
break;
|
break;
|
||||||
case DialogAboutQt:
|
case DialogAboutQt:
|
||||||
QMessageBox::aboutQt(this);
|
QMessageBox::aboutQt(this);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user