diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-26 20:45:13 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-26 20:45:13 +0300 |
commit | 592c0d89f865c44e6909e0ca1e9d0c550be890b4 (patch) | |
tree | 9fa54db74a020bf24d10d5c0d27d22215eeb4207 /plugins/Scriver/src/chat_main.cpp | |
parent | d31171a485868e070904adbbde249cde190eb637 (diff) |
context menu moved to mir_app, part II :)
Diffstat (limited to 'plugins/Scriver/src/chat_main.cpp')
-rw-r--r-- | plugins/Scriver/src/chat_main.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/plugins/Scriver/src/chat_main.cpp b/plugins/Scriver/src/chat_main.cpp index 5d0cb3b0e3..5c7e1183f7 100644 --- a/plugins/Scriver/src/chat_main.cpp +++ b/plugins/Scriver/src/chat_main.cpp @@ -23,7 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // globals
CHAT_MANAGER *pci;
-HMENU g_hMenu = nullptr;
pfnDoTrayIcon oldDoTrayIcon;
pfnDoPopup oldDoPopup;
@@ -151,13 +150,5 @@ int Chat_Load() oldDoTrayIcon = pci->DoTrayIcon; pci->DoTrayIcon = DoTrayIcon;
pci->ReloadSettings();
- g_hMenu = LoadMenu(g_hInst, MAKEINTRESOURCE(IDR_MENU));
- TranslateMenu(g_hMenu);
- return 0;
-}
-
-int Chat_Unload(void)
-{
- DestroyMenu(g_hMenu);
return 0;
}
|