diff options
author | George Hazan <ghazan@miranda.im> | 2017-01-16 18:19:15 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-01-16 18:19:15 +0300 |
commit | df51f338983ba85feffcbd2209100c6927dda8a5 (patch) | |
tree | 9f81c94034396b4c4e8496661b12b346798808cf /plugins/MirLua/Modules/WinAPI/src | |
parent | c00f494c8165b9f2d9facc6488173502b19ca696 (diff) |
Utf8DecodeT/Utf8EncodeT macros considered useless and replaced with Utf8DecodeW/Utf8EncodeW
Diffstat (limited to 'plugins/MirLua/Modules/WinAPI/src')
-rw-r--r-- | plugins/MirLua/Modules/WinAPI/src/winapi.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/MirLua/Modules/WinAPI/src/winapi.cpp b/plugins/MirLua/Modules/WinAPI/src/winapi.cpp index 40c80555bf..da4f62ec50 100644 --- a/plugins/MirLua/Modules/WinAPI/src/winapi.cpp +++ b/plugins/MirLua/Modules/WinAPI/src/winapi.cpp @@ -217,10 +217,10 @@ static int lua_GetRegValue(lua_State *L) case REG_SZ:
case REG_LINK:
case REG_EXPAND_SZ:
- {
- ptrA str(Utf8EncodeT((wchar_t*)value));
- lua_pushlstring(L, str, mir_strlen(str));
- }
+ {
+ ptrA str(Utf8EncodeW((wchar_t*)value));
+ lua_pushlstring(L, str, mir_strlen(str));
+ }
break;
default:
|