summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_icons.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2013-04-29 05:05:06 +0000
committerAlexander Lantsev <aunsane@gmail.com>2013-04-29 05:05:06 +0000
commit68aeed54fb2c7c7d10c192a99c25d0a0c870b017 (patch)
treec6d0056480519c69823db8374fcde3eb72b4eef5 /protocols/Skype/src/skype_icons.cpp
parentf0ca17cf986fc21dd98037a4599e85437261d5de (diff)
- added new db event type
- added new icons - fixed few bugs git-svn-id: http://svn.miranda-ng.org/main/trunk@4565 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_icons.cpp')
-rw-r--r--protocols/Skype/src/skype_icons.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/protocols/Skype/src/skype_icons.cpp b/protocols/Skype/src/skype_icons.cpp
index 9a739f57ae..87294370ec 100644
--- a/protocols/Skype/src/skype_icons.cpp
+++ b/protocols/Skype/src/skype_icons.cpp
@@ -2,7 +2,10 @@
_tag_iconList CSkypeProto::IconList[] =
{
- { LPGENT("Protocol icon"), "main", IDI_ICON },
+ { LPGENT("Protocol icon"), "main", IDI_ICON },
+
+ { LPGENT("Call"), "call", IDI_CALL },
+ { LPGENT("Invite to conference"), "confInvite", IDI_CONF_INVITE },
{ LPGENT("Revoke authorization"), "authRevoke", IDI_AUTH_REVOKE },
{ LPGENT("Request authorization"), "authRequest", IDI_AUTH_REQUEST },
{ LPGENT("Grant authorization"), "authGrant", IDI_AUTH_GRANT },
@@ -38,7 +41,7 @@ HANDLE CSkypeProto::GetIconHandle(const char* name)
{
for (size_t i = 0; i < SIZEOF(CSkypeProto::IconList); i++)
{
- if (::strcmp(CSkypeProto::IconList[i].Name, name) == 0)
+ if (::stricmp(CSkypeProto::IconList[i].Name, name) == 0)
return CSkypeProto::IconList[i].Handle;
}
return 0;