From df51f338983ba85feffcbd2209100c6927dda8a5 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 16 Jan 2017 18:19:15 +0300 Subject: Utf8DecodeT/Utf8EncodeT macros considered useless and replaced with Utf8DecodeW/Utf8EncodeW --- plugins/MirLua/Modules/WinAPI/src/winapi.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/MirLua/Modules/WinAPI/src') 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: -- cgit v1.2.3