diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-07-06 08:03:40 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-07-06 08:03:40 +0000 |
commit | dc8040ee04ef2819c99d55dc74e9fe56d4ba4d1e (patch) | |
tree | 7ffe8d9e4c6e395855ab43fdc14d739cf9b3e9ec /plugins/MirLua/src/m_toptoolbar.cpp | |
parent | c59e17d57d3e2187c4d6412a128cfa8e09be287d (diff) |
MirLua: !api break
- scripts will be load after ME_SYSTEM_MODULESLOADED event
- removed event functions OnModulesLoaded, OnPreShutdown from m_core
- removed OnMsgToolBarLoaded from m_msg_buttonsbar
- removed OnTopToolBarLoaded from m_toptoolbar
- fixed examples
git-svn-id: http://svn.miranda-ng.org/main/trunk@14495 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_toptoolbar.cpp')
-rw-r--r-- | plugins/MirLua/src/m_toptoolbar.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/plugins/MirLua/src/m_toptoolbar.cpp b/plugins/MirLua/src/m_toptoolbar.cpp index 3e26f962dc..14eb67ae76 100644 --- a/plugins/MirLua/src/m_toptoolbar.cpp +++ b/plugins/MirLua/src/m_toptoolbar.cpp @@ -90,31 +90,10 @@ static int lua_RemoveButton(lua_State *L) return 1;
}
-static int lua_OnTopToolBarLoaded(lua_State *L)
-{
- 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);
-
- Hooks.insert(res);
- HookRefs.insert(new HandleRefParam(L, res, ref));
-
- return 1;
-}
-
static luaL_Reg toptoolbarApi[] =
{
{ "AddButton", lua_AddButton },
{ "RemoveButton", lua_RemoveButton },
- { "OnTopToolBarLoaded", lua_OnTopToolBarLoaded },
{ NULL, NULL }
};
|