diff options
author | George Hazan <george.hazan@gmail.com> | 2014-03-25 16:02:12 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-03-25 16:02:12 +0000 |
commit | 70598a51f5bd62c1d342eaab4ee3641068b58455 (patch) | |
tree | 3384e2f7753ef1e48d3241999ff8331e26134ebb /src/mir_core/langpack.cpp | |
parent | a75c230f0b36bc16a2d36e4321ebbdb82a25cc9b (diff) |
fix for displaying ansi chars in Options - Languages
git-svn-id: http://svn.miranda-ng.org/main/trunk@8742 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/mir_core/langpack.cpp')
-rw-r--r-- | src/mir_core/langpack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_core/langpack.cpp b/src/mir_core/langpack.cpp index 6936fbda76..c6911ea135 100644 --- a/src/mir_core/langpack.cpp +++ b/src/mir_core/langpack.cpp @@ -306,7 +306,7 @@ static int LoadLangDescr(LANGPACK_INFO &lpinfo, FILE *fp, char *line, int &start fgets(line, LANGPACK_BUF_SIZE, fp);
size_t lineLen = strlen(line);
if (lineLen >= 3 && line[0] == '\xef' && line[1] == '\xbb' && line[2] == '\xbf') {
- fileCp = CP_UTF8;
+ lpinfo.codepage = fileCp = CP_UTF8;
memmove(line, line + 3, lineLen - 2);
}
|