diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-02-22 22:29:21 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-02-22 22:29:21 +0000 |
commit | 4c73ded51e3d25b836fad3a8dfaf35ab1615a281 (patch) | |
tree | 17f9792e70ad4b5f6a54842970a047bd86d731d2 /plugins/MirLua/src/mlua_metatable.h | |
parent | 0b82b879821c7e73b86f189be747c5634c8b46b7 (diff) |
MirLua: fixed metatable constructor function
git-svn-id: http://svn.miranda-ng.org/main/trunk@16327 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/mlua_metatable.h')
-rw-r--r-- | plugins/MirLua/src/mlua_metatable.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/MirLua/src/mlua_metatable.h b/plugins/MirLua/src/mlua_metatable.h index 39bc63149c..5262b6f50c 100644 --- a/plugins/MirLua/src/mlua_metatable.h +++ b/plugins/MirLua/src/mlua_metatable.h @@ -68,7 +68,7 @@ private: *obj = NULL;
}
- static int lua__new(lua_State *L)
+ static int lua_new(lua_State *L)
{
T *udata = (T*)lua_newuserdata(L, sizeof(T));
memset(udata, 0, sizeof(T));
@@ -139,11 +139,9 @@ public: {
MT::name = tname;
- lua_register(L, MT::name, lua__new);
+ lua_register(L, MT::name, lua_new);
luaL_newmetatable(L, MT::name);
- lua_pushcfunction(L, lua__new);
- lua_setfield(L, -2, "__call");
lua_pushcfunction(L, lua__index);
lua_setfield(L, -2, "__index");
lua_pushcfunction(L, lua__gc);
|