summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--library/qpeapplication.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index 187a7e2..8448352 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -644,4 +644,8 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t )
644 delete trans; 644 delete trans;
645 645
646 /*
647 * not required. if using one of these languages, you might as well install
648 * a custom font.
649
646 //###language/font hack; should look it up somewhere 650 //###language/font hack; should look it up somewhere
647 if ( lang == "ja" || lang == "zh_CN" || lang == "zh_TW" || lang == "ko" ) { 651 if ( lang == "ja" || lang == "zh_CN" || lang == "zh_TW" || lang == "ko" ) {
@@ -649,5 +653,7 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t )
649 setFont( fn ); 653 setFont( fn );
650 } 654 }
655
651 else { 656 else {
657 */
652 Config config( "qpe" ); 658 Config config( "qpe" );
653 config.setGroup( "Appearance" ); 659 config.setGroup( "Appearance" );
@@ -661,5 +667,5 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t )
661 QFont selectedFont = fdb.font( familyStr, styleStr, i_size, charSetStr ); 667 QFont selectedFont = fdb.font( familyStr, styleStr, i_size, charSetStr );
662 setFont( selectedFont ); 668 setFont( selectedFont );
663 } 669 //}
664 } 670 }
665 671