summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/m_toptoolbar.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-01-02 16:22:17 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-01-02 16:22:17 +0000
commita2aebf5ed9356abdbd341bf112f2c4b0933fbe3c (patch)
treefcf5c48a5f5f2969602d5e75d534f10327f22484 /plugins/MirLua/src/m_toptoolbar.cpp
parentb544097135831f24da3d6b11211d19e9536005f0 (diff)
MirLua: time to break backward compatibility
git-svn-id: http://svn.miranda-ng.org/main/trunk@15994 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_toptoolbar.cpp')
-rw-r--r--plugins/MirLua/src/m_toptoolbar.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/plugins/MirLua/src/m_toptoolbar.cpp b/plugins/MirLua/src/m_toptoolbar.cpp
index b990dcf8e0..f53f728774 100644
--- a/plugins/MirLua/src/m_toptoolbar.cpp
+++ b/plugins/MirLua/src/m_toptoolbar.cpp
@@ -114,34 +114,11 @@ static int lua_RemoveButton(lua_State *L)
return 1;
}
-static int lua_OnTopToolBarLoaded(lua_State *L)
-{
- ObsoleteMethod(L, "Use m.HookEvent instead");
-
- if (!lua_isfunction(L, 1))
- {
- lua_pushlightuserdata(L, NULL);
- return 1;
- }
-
- lua_pushvalue(L, 1);
- int ref = luaL_ref(L, LUA_REGISTRYINDEX);
-
- HANDLE res = ::HookEventObjParam(ME_TTB_MODULELOADED, CMLua::HookEventObjParam, L, ref);
- lua_pushlightuserdata(L, res);
-
- CMLua::HookRefs.insert(new HandleRefParam(L, res, ref));
-
- return 1;
-}
-
static luaL_Reg toptoolbarApi[] =
{
{ "AddButton", lua_AddButton },
{ "RemoveButton", lua_RemoveButton },
- { "OnTopToolBarLoaded", lua_OnTopToolBarLoaded },
-
{ NULL, NULL }
};