From b1a7c5b9b7670628e0db3bbc9962b087f5c566f3 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Wed, 28 Oct 2015 21:43:40 +0000 Subject: MirLua: removed another one custom tables git-svn-id: http://svn.miranda-ng.org/main/trunk@15643 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/MirLua/src/m_protocols.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/MirLua/src/m_protocols.cpp') diff --git a/plugins/MirLua/src/m_protocols.cpp b/plugins/MirLua/src/m_protocols.cpp index 9aa4b4f753..28c6f19ddc 100644 --- a/plugins/MirLua/src/m_protocols.cpp +++ b/plugins/MirLua/src/m_protocols.cpp @@ -36,7 +36,7 @@ static int lua_ProtoIterator(lua_State *L) { lua_pushinteger(L, (i + 1)); lua_replace(L, lua_upvalueindex(1)); - MapToTable(L, protos[i]); + lua_pushlightuserdata(L, protos[i]); } else lua_pushnil(L); @@ -138,7 +138,7 @@ static int lua_AccountIterator(lua_State *L) { lua_pushinteger(L, (i + 1)); lua_replace(L, lua_upvalueindex(1)); - MapToTable(L, accounts[i]); + lua_pushlightuserdata(L, accounts[i]); } else lua_pushnil(L); -- cgit v1.2.3