aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Hoa V. Dinh <dinh.viet.hoa@gmail.com>2014-11-05 17:21:21 -0800
committerGravatar Hoa V. Dinh <dinh.viet.hoa@gmail.com>2014-11-05 17:21:21 -0800
commitaaf0e4003700b1fcde502410476e859180de0286 (patch)
tree195ecc3f9fdcaef59ece181d7c5c00d5697dc19b /src
parent7ebf0bb87ab92f096c30082cd863ce249f62d93e (diff)
Fixed known charset list
Diffstat (limited to 'src')
-rw-r--r--src/core/basetypes/MCData.cc22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/core/basetypes/MCData.cc b/src/core/basetypes/MCData.cc
index 9845d77a..bbe7ee41 100644
--- a/src/core/basetypes/MCData.cc
+++ b/src/core/basetypes/MCData.cc
@@ -242,17 +242,17 @@ static bool isHintCharsetValid(String * hintCharset)
"ISO-2022-CN",
"ISO-2022-JP",
"ISO-2022-KR",
- "ISO-8859-5"
- "windows-1251"
- "KOI8-R"
- "x-mac-cyrillic"
- "IBM866"
- "IBM855"
- "ISO-8859-7"
- "windows-1253"
- "ISO-8859-2"
- "windows-1250"
- "TIS-620"
+ "ISO-8859-5",
+ "windows-1251",
+ "KOI8-R",
+ "x-mac-cyrillic",
+ "IBM866",
+ "IBM855",
+ "ISO-8859-7",
+ "windows-1253",
+ "ISO-8859-2",
+ "windows-1250",
+ "TIS-620",
};
for(unsigned int i = 0 ; i < sizeof(charset_list) / sizeof(charset_list[0]) ; i ++) {
String * str = String::stringWithUTF8Characters(charset_list[i]);