Use QString::fromUtf8 as asked by Albert

"QStringliteral is broken on windows with non ascii chars"
remotes/origin/fix-bug-383943-hidpi-glitches
Laurent Montel 7 years ago
parent cb691f70dc
commit 398dd7e250
  1. 3
      autotests/parttest.cpp

@ -255,7 +255,8 @@ void PartTest::testForwardPDF_data()
QTest::addColumn<QString>("dir");
QTest::newRow("non-utf8") << QStringLiteral("synctextest");
QTest::newRow("utf8") << QStringLiteral("ßðđđŋßðđŋ");
//QStringliteral is broken on windows with non ascii chars so using QString::fromUtf8
QTest::newRow("utf8") << QString::fromUtf8("ßðđđŋßðđŋ");
}
void PartTest::testGeneratorPreferences()

Loading…
Cancel
Save