diff options
| author | Alexander Lantsev <aunsane@gmail.com> | 2015-06-12 20:29:34 +0000 | 
|---|---|---|
| committer | Alexander Lantsev <aunsane@gmail.com> | 2015-06-12 20:29:34 +0000 | 
| commit | bc56da65f5f3a80ca6497d34633547018efda1ba (patch) | |
| tree | 800575ceae5b27e5433754d48537c67c2543c894 | |
| parent | 56438091a0ed892f41bda356f4fdf843c7b09a72 (diff) | |
MiraLua: added hContact field
git-svn-id: http://svn.miranda-ng.org/main/trunk@14138 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
| -rw-r--r-- | plugins/MirLua/src/m_msg_buttonsbar.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/plugins/MirLua/src/m_msg_buttonsbar.cpp b/plugins/MirLua/src/m_msg_buttonsbar.cpp index 1e779714e2..0fcee719da 100644 --- a/plugins/MirLua/src/m_msg_buttonsbar.cpp +++ b/plugins/MirLua/src/m_msg_buttonsbar.cpp @@ -113,6 +113,9 @@ int ButtonPressedHookEventObjParam(void *obj, WPARAM wParam, LPARAM lParam, LPAR  	lua_pushstring(L, "ButtonID");
  	lua_pushinteger(L, bcd->dwButtonId);
  	lua_settable(L, -3);
 +	lua_pushstring(L, "hContact");
 +	lua_pushinteger(L, bcd->hContact);
 +	lua_settable(L, -3);
  	lua_pushstring(L, "Flags");
  	lua_pushinteger(L, bcd->flags);
  	lua_settable(L, -3);
 | 
