diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-12-31 18:38:47 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-12-31 18:38:47 +0000 |
commit | 961bf5e6b1ba406951a7624962973bacfe140cd5 (patch) | |
tree | 191ca6c8969c381e22c411bab13a2d0216d6dc53 /plugins/MirLua/src/m_chat.cpp | |
parent | 499ce176a0f552ade6233a7b4f5d1635022f44d1 (diff) |
MirLua: added CONTACTINFO metatable
git-svn-id: http://svn.miranda-ng.org/main/trunk@15980 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_chat.cpp')
-rw-r--r-- | plugins/MirLua/src/m_chat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/m_chat.cpp b/plugins/MirLua/src/m_chat.cpp index 78aa88c810..e6938a8c94 100644 --- a/plugins/MirLua/src/m_chat.cpp +++ b/plugins/MirLua/src/m_chat.cpp @@ -134,7 +134,7 @@ static int gce__index(lua_State *L) static const luaL_Reg gceMeta[] =
{
- { MT_GCEVENT, gce__init },
+ { "__init", gce__init },
{ "__index", gce__index },
{ NULL, NULL }
};
|