summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_menus.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-09-13 09:25:50 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-09-13 09:25:50 +0000
commit437b5d6ab1333635cf5ba38e2d9e639448ab34bc (patch)
tree797b0149e6906fa8872ec6eb13884de5481ee79c /protocols/Tox/src/tox_menus.cpp
parentf5584d8ae977f278ae9735f53ab868c8574c2451 (diff)
Tox: removed useless own bicycle
git-svn-id: http://svn.miranda-ng.org/main/trunk@15339 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_menus.cpp')
-rw-r--r--protocols/Tox/src/tox_menus.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/protocols/Tox/src/tox_menus.cpp b/protocols/Tox/src/tox_menus.cpp
index 1bf262ae60..6da8d1bc93 100644
--- a/protocols/Tox/src/tox_menus.cpp
+++ b/protocols/Tox/src/tox_menus.cpp
@@ -39,8 +39,6 @@ void CToxProto::InitMenus()
{
HookEvent(ME_CLIST_PREBUILDCONTACTMENU, &CToxProto::PrebuildContactMenu);
- //hChooserMenu = Menu_AddObject("SkypeAccountChooser", LPGEN("Skype menu chooser"), 0, "Skype/MenuChoose");
-
CMenuItem mi;
mi.flags = CMIF_TCHAR;
@@ -67,15 +65,11 @@ void CToxProto::InitMenus()
mi.pszService = MODULE"/Audio/Call";
mi.name.t = LPGENT("Call");
mi.position = -2000020000 + CMI_AUDIO_CALL;
- mi.hIcolibItem = GetIconHandle("audio_start");
+ mi.hIcolibItem = GetIconHandle(IDI_AUDIO_START);
ContactMenuItems[CMI_AUDIO_CALL] = Menu_AddContactMenuItem(&mi);
CreateServiceFunction(mi.pszService, GlobalService<&CToxProto::OnSendAudioCall>);
}
-void CToxProto::UninitMenus()
-{
-}
-
int CToxProto::OnInitStatusMenu()
{
CMenuItem mi;