diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-02 20:26:28 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-02 20:26:28 +0000 |
commit | c2367b41afe38f4e2f78544e1552e4f93302392a (patch) | |
tree | 3846cec944f5d17f2a8a4f5eb58e111fd1e1e5d6 /plugins/MirLua/src/m_clist.cpp | |
parent | 53ebc4e687d02bdab341171bd8b8b22b792e5c77 (diff) |
tray menu functions also moved to the core.
now all menu items are gathered there
git-svn-id: http://svn.miranda-ng.org/main/trunk@14476 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_clist.cpp')
-rw-r--r-- | plugins/MirLua/src/m_clist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/m_clist.cpp b/plugins/MirLua/src/m_clist.cpp index 9e52c700ed..d6b1879286 100644 --- a/plugins/MirLua/src/m_clist.cpp +++ b/plugins/MirLua/src/m_clist.cpp @@ -73,7 +73,7 @@ static int lua_AddTrayMenuItem(lua_State *L) static int lua_BuildTrayMenu(lua_State *L)
{
- HMENU res = (HMENU)::CallService(MS_CLIST_MENUBUILDTRAY);
+ HMENU res = Menu_BuildTrayMenu();
lua_pushlightuserdata(L, res);
return 1;
|