diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-06-16 15:15:01 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-06-16 15:15:01 +0000 |
commit | 6dc20e70f308daee742372a7978c1f65668186f3 (patch) | |
tree | 232e56b9d1c8766221902a946b2cdc63355e0873 /plugins/MirLua/src/m_core.cpp | |
parent | c9700c210aa7252faa78af4fbd39a6e0de9f1642 (diff) |
MirLua:
- added variables module
- strings passed through WPARAM/LPARAM should be ansi
git-svn-id: http://svn.miranda-ng.org/main/trunk@14207 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_core.cpp')
-rw-r--r-- | plugins/MirLua/src/m_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/m_core.cpp b/plugins/MirLua/src/m_core.cpp index df0f502fac..77dab3299d 100644 --- a/plugins/MirLua/src/m_core.cpp +++ b/plugins/MirLua/src/m_core.cpp @@ -179,7 +179,7 @@ static int lua_ReplaceVariables(lua_State *L) {
char *what = (char*)luaL_checkstring(L, 1);
- ptrT value(mir_utf8decodeT(what, NULL));
+ ptrT value(mir_utf8decodeT(what));
lua_pushstring(L, T2Utf(VARST(value)));
return 1;
|