diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-04 14:14:58 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-04 14:14:58 +0000 |
commit | f5baf2606966349e067d423a596722b66c401651 (patch) | |
tree | d501fa4b011c2c074b12e48284f5f2b824d971b0 /plugins/Mir_core/utf.cpp | |
parent | fc477d493da24a91dd9d095fbcf74a9b09c15fa8 (diff) |
- internal langpack preparation for hLangpack-dependent resource cleaning
- langpack functions' names normalization (2Awk: safe for plugins written in Delphi)
git-svn-id: http://svn.miranda-ng.org/main/trunk@758 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Mir_core/utf.cpp')
-rw-r--r-- | plugins/Mir_core/utf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Mir_core/utf.cpp b/plugins/Mir_core/utf.cpp index 5ec6042758..ddf2d1ca9f 100644 --- a/plugins/Mir_core/utf.cpp +++ b/plugins/Mir_core/utf.cpp @@ -305,7 +305,7 @@ MIR_CORE_DLL(char*) Utf8DecodeCP(char* str, int codepage, wchar_t** ucs2) MIR_CORE_DLL(char*) Utf8Decode(char* str, wchar_t** ucs2)
{
- return Utf8DecodeCP(str, LangPackGetDefaultCodePage(), ucs2);
+ return Utf8DecodeCP(str, Langpack_GetDefaultCodePage(), ucs2);
}
MIR_CORE_DLL(wchar_t*) Utf8DecodeW(const char* str)
@@ -379,7 +379,7 @@ MIR_CORE_DLL(char*) Utf8EncodeCP(const char* src, int codepage) MIR_CORE_DLL(char*) Utf8Encode(const char* src)
{
- return Utf8EncodeCP(src, LangPackGetDefaultCodePage());
+ return Utf8EncodeCP(src, Langpack_GetDefaultCodePage());
}
/////////////////////////////////////////////////////////////////////////////////////////
|