diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-10-24 20:45:24 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-10-24 20:45:24 +0000 |
commit | 5262fce019621330587fbae32feb5adf1c62c5ea (patch) | |
tree | 97b614e9bced0795a23d1ed5b436d588bc55f33a /plugins/MirLua/src/m_message.cpp | |
parent | 88b647fa71a44bcb4f3c90c4c4e8c77f2d2b08da (diff) |
MirLua: massive bug fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@15610 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_message.cpp')
-rw-r--r-- | plugins/MirLua/src/m_message.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/MirLua/src/m_message.cpp b/plugins/MirLua/src/m_message.cpp index 1722671689..4855e18299 100644 --- a/plugins/MirLua/src/m_message.cpp +++ b/plugins/MirLua/src/m_message.cpp @@ -157,13 +157,13 @@ static int mwed__index(lua_State *L) MessageWindowEventData *mwed = *(MessageWindowEventData**)luaL_checkudata(L, 1, MT_MESSAGEWINDOWEVENTDATA);
const char *key = lua_tostring(L, 2);
- if (!mir_strcmpi(key, "Module"))
+ if (!mir_strcmpi(key, "Module") == 0)
lua_pushstring(L, ptrA(mir_utf8encode(mwed->szModule)));
- if (!mir_strcmpi(key, "Type"))
+ else if (!mir_strcmpi(key, "Type") == 0)
lua_pushinteger(L, mwed->uType);
- if (!mir_strcmpi(key, "hContact"))
+ else if (!mir_strcmpi(key, "hContact") == 0)
lua_pushinteger(L, mwed->hContact);
- if (!mir_strcmpi(key, "Flags"))
+ else if (!mir_strcmpi(key, "Flags") == 0)
lua_pushinteger(L, mwed->uFlags);
else
lua_pushnil(L);
|