-rw-r--r-- | library/qpeapplication.cpp | 8 |
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 ) delete trans; + /* + * not required. if using one of these languages, you might as well install + * a custom font. + //###language/font hack; should look it up somewhere if ( lang == "ja" || lang == "zh_CN" || lang == "zh_TW" || lang == "ko" ) { @@ -649,5 +653,7 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t ) setFont( fn ); } + else { + */ Config config( "qpe" ); config.setGroup( "Appearance" ); @@ -661,5 +667,5 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t ) QFont selectedFont = fdb.font( familyStr, styleStr, i_size, charSetStr ); setFont( selectedFont ); - } + //} } |