summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2011-01-24 10:35:12 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2011-01-25 15:03:12 (GMT)
commit1f225236d1b1497ad3cd7742f9a659beeff272bc (patch)
tree8362bcc254620e07d6cc5b176cfe266a97a7264f
parent43867daa6a6b299038bd3a559078efc26608c74d (diff)
downloadQt-1f225236d1b1497ad3cd7742f9a659beeff272bc.zip
Qt-1f225236d1b1497ad3cd7742f9a659beeff272bc.tar.gz
Qt-1f225236d1b1497ad3cd7742f9a659beeff272bc.tar.bz2
Fixed UTF-8 application names in device application menu in Symbian
CHARACTER_SET UTF8 statement was missing from generated .rss file, causing localized application names containing UTF-8 characters to be rendered incorrectly. Task-number: QT-4476 Reviewed-by: axis (cherry picked from commit 7a5960b2991e9ac33bec0bb359ba825d0c4889af)
-rw-r--r--qmake/generators/symbian/symbiancommon.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/qmake/generators/symbian/symbiancommon.cpp b/qmake/generators/symbian/symbiancommon.cpp
index 1f4a852..2270c2e 100644
--- a/qmake/generators/symbian/symbiancommon.cpp
+++ b/qmake/generators/symbian/symbiancommon.cpp
@@ -629,6 +629,7 @@ void SymbianCommonGenerator::writeRssFile(QString &numberOfIcons, QString &iconF
t << "// * user." << endl;
t << "// ============================================================================" << endl;
t << endl;
+ t << "CHARACTER_SET UTF8" << endl;
t << "#include <appinfo.rh>" << endl;
t << "#include \"" << fixedTarget << ".loc\"" << endl;
t << endl;