diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-06-19 21:21:10 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-06-19 21:21:10 +0000 |
commit | c797ebe33b5e5ad929392be428090708df42321b (patch) | |
tree | d75452ee6fd06db4a1ca9a0dd6388c8682258394 /protocols/Skype/src/skype_menus.cpp | |
parent | 2e1a5d69fbe1e329bde49c2ae6e9be82017fbd00 (diff) |
Skype: x64 compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@5051 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 2b2aca93d1..ee227134a1 100644 --- a/protocols/Skype/src/skype_menus.cpp +++ b/protocols/Skype/src/skype_menus.cpp @@ -1,7 +1,7 @@ #include "skype.h"
HANDLE CSkypeProto::hChooserMenu;
-std::map<int, HANDLE> CSkypeProto::contactMenuItems;
+std::map<size_t, HANDLE> CSkypeProto::contactMenuItems;
INT_PTR CSkypeProto::MenuChooseService(WPARAM wParam, LPARAM lParam)
{
@@ -150,7 +150,7 @@ int CSkypeProto::RevokeAuth(WPARAM wParam, LPARAM lParam) return 0;
}
-INT_PTR CSkypeProto::IgnoreCommand(WPARAM wParam, LPARAM)
+int CSkypeProto::IgnoreCommand(WPARAM wParam, LPARAM)
{
CContact::Ref contact;
HANDLE hContact = (HANDLE)wParam;
@@ -168,7 +168,7 @@ INT_PTR CSkypeProto::IgnoreCommand(WPARAM wParam, LPARAM) return 0;
}
-INT_PTR CSkypeProto::BlockCommand(WPARAM wParam, LPARAM)
+int CSkypeProto::BlockCommand(WPARAM wParam, LPARAM)
{
CContact::Ref contact;
HANDLE hContact = (HANDLE)wParam;
|