diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2016-01-07 12:25:32 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2016-01-07 12:25:32 +0000 |
commit | 8a22b1b13cbd23e4d0a0a1cf3da9c84596b55280 (patch) | |
tree | b323c8c3ac2aa9ea54b1618e1bb69bf856aa55c4 /plugins/MirLua/src/m_hotkeys.cpp | |
parent | 6a6a1d097e043dba142d5cdc485e6b4dbe67e12a (diff) |
MirLua: WinAPI module moved to external library
git-svn-id: http://svn.miranda-ng.org/main/trunk@16045 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_hotkeys.cpp')
-rw-r--r-- | plugins/MirLua/src/m_hotkeys.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/MirLua/src/m_hotkeys.cpp b/plugins/MirLua/src/m_hotkeys.cpp index a052f5beb1..030107ebb6 100644 --- a/plugins/MirLua/src/m_hotkeys.cpp +++ b/plugins/MirLua/src/m_hotkeys.cpp @@ -46,8 +46,7 @@ static int lua_Register(lua_State *L) HOTKEYDESC hk;
MakeHotkey(L, hk);
-
- INT_PTR res = ::CallService("CoreHotkeys/Register", (WPARAM)hScriptsLangpack, (LPARAM)&hk);
+ INT_PTR res = ::CallService("CoreHotkeys/Register", (WPARAM)hLangpack, (LPARAM)&hk);
lua_pushboolean(L, res);
return 1;
|