diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-10-23 18:30:46 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-10-23 18:30:46 +0000 |
commit | 368f94af7740623a97c2c51c1a7d1a3f15593f1d (patch) | |
tree | cbb2d80054070f2ef08f4948a31f25ca20bb43f1 /protocols/Skype/src/skype_menus.cpp | |
parent | e2bbd04dc810a27ee78a64b7c41f5fa2fea10988 (diff) |
- fixed som errors
- second approach to UserIsTyping
git-svn-id: http://svn.miranda-ng.org/main/trunk@2062 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_menus.cpp')
-rw-r--r-- | protocols/Skype/src/skype_menus.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_menus.cpp b/protocols/Skype/src/skype_menus.cpp index 128862dc03..7e92097b06 100644 --- a/protocols/Skype/src/skype_menus.cpp +++ b/protocols/Skype/src/skype_menus.cpp @@ -106,7 +106,7 @@ void CSkypeProto::InitMenus() mi.ptszName = LPGENT("Request authorization");
mi.flags = CMIF_ICONFROMICOLIB | CMIF_TCHAR;
mi.position = -2000001000;
- mi.icolibItem = GetIconHandle("authReuest");
+ mi.icolibItem = CSkypeProto::GetIconHandle("authReuest");
mi.pszService = "Skype/ReqAuth";
g_hContactMenuItems[CMI_AUTH_REQUEST] = Menu_AddContactMenuItem(&mi);
g_hContactMenuSvc[CMI_AUTH_REQUEST] = CreateServiceFunction(mi.pszService, SkypeMenuHandleRequestAuth);
@@ -115,7 +115,7 @@ void CSkypeProto::InitMenus() mi.pszService = "Skype/GrantAuth";
mi.ptszName = LPGENT("Grant authorization");
mi.position = -2000001001;
- mi.icolibItem = GetIconHandle("authGrant");
+ mi.icolibItem = CSkypeProto::GetIconHandle("authGrant");
g_hContactMenuItems[CMI_AUTH_GRANT] = Menu_AddContactMenuItem(&mi);
g_hContactMenuSvc[CMI_AUTH_GRANT] = CreateServiceFunction(mi.pszService, SkypeMenuHandleGrantAuth);
@@ -123,7 +123,7 @@ void CSkypeProto::InitMenus() mi.pszService = "Skype/RevokeAuth";
mi.ptszName = LPGENT("Revoke authorization");
mi.position = -2000001002;
- mi.icolibItem = GetIconHandle("authRevoke");
+ mi.icolibItem = CSkypeProto::GetIconHandle("authRevoke");
g_hContactMenuItems[CMI_AUTH_REVOKE] = Menu_AddContactMenuItem(&mi);
g_hContactMenuSvc[CMI_AUTH_REVOKE] = CreateServiceFunction(mi.pszService, SkypeMenuRevokeAuth);
}
|