diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-06-23 14:47:00 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-06-23 14:47:00 +0000 |
commit | 1a02247a7b6913b45bf81331c3e0ab9a374d04e8 (patch) | |
tree | cc23d6a8341c2af946fc4dd73b75d089e50c822b /plugins/MirLua/src/mlua.cpp | |
parent | 50b6a5ca2c5652fdf4e5fab69d9918c0f633cfb5 (diff) |
MirLua: fix previous commit
git-svn-id: http://svn.miranda-ng.org/main/trunk@17024 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/mlua.cpp')
-rw-r--r-- | plugins/MirLua/src/mlua.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MirLua/src/mlua.cpp b/plugins/MirLua/src/mlua.cpp index afe49d0f31..bea7645bbf 100644 --- a/plugins/MirLua/src/mlua.cpp +++ b/plugins/MirLua/src/mlua.cpp @@ -89,8 +89,8 @@ void CMLua::Unload() KillModuleMenus(hMLuaLangpack);
KillModuleHotkeys(hMLuaLangpack);
- KillObjectEventHooks(L);
- KillObjectServices(L);
+ KillObjectEventHooks(this);
+ KillObjectServices(this);
lua_close(L);
}
|