diff options
author | George Hazan <george.hazan@gmail.com> | 2014-09-17 12:29:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-09-17 12:29:30 +0000 |
commit | 5dc533256a87daab9e3b42b35614b411b189a985 (patch) | |
tree | 981ec24363a92b703eda6a72ad9969925a6ba235 /plugins/Clist_modern/src/CLUIFrames/framesmenu.cpp | |
parent | b797c26e41a864d1a195b55d5ab191e87ddca762 (diff) |
- MS_CLIST_REMOVECONTEXTFRAMEMENUITEM, MS_CLIST_REMOVESUBGROUPMENUITEM & MS_CLIST_REMOVEGROUPMENUITEM removed;
- minor code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@10496 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/CLUIFrames/framesmenu.cpp')
-rw-r--r-- | plugins/Clist_modern/src/CLUIFrames/framesmenu.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/Clist_modern/src/CLUIFrames/framesmenu.cpp b/plugins/Clist_modern/src/CLUIFrames/framesmenu.cpp index d500d29286..8b1bf6af9e 100644 --- a/plugins/Clist_modern/src/CLUIFrames/framesmenu.cpp +++ b/plugins/Clist_modern/src/CLUIFrames/framesmenu.cpp @@ -45,12 +45,6 @@ static INT_PTR AddContextFrameMenuItem(WPARAM wParam, LPARAM lParam) return CallService(MO_ADDNEWMENUITEM, (WPARAM)hFrameMenuObject, (LPARAM)&tmi);
}
-static INT_PTR RemoveContextFrameMenuItem(WPARAM wParam, LPARAM lParam)
-{
- CallService(MO_REMOVEMENUITEM, wParam, 0);
- return 0;
-}
-
//called with:
//wparam - ownerdata
//lparam - lparam from winproc
@@ -110,7 +104,6 @@ int InitFramesMenus(void) CreateServiceFunction("FrameMenuCheckService", FrameMenuCheckService);
CreateServiceFunction("FrameMenuFreeService", FreeOwnerDataFrameMenu);
- CreateServiceFunction(MS_CLIST_REMOVECONTEXTFRAMEMENUITEM, RemoveContextFrameMenuItem);
CreateServiceFunction("CList/AddContextFrameMenuItem", AddContextFrameMenuItem);
CreateServiceFunction(MS_CLIST_MENUBUILDFRAMECONTEXT, BuildContextFrameMenu);
CreateServiceFunction(MS_CLIST_FRAMEMENUNOTIFY, ContextFrameMenuNotify);
|