diff options
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index f60d88faa9..24df7c7e40 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -432,7 +432,7 @@ protected: // menus
HGENMENU m_hMenuRoot;
static HANDLE hChooserMenu;
- static std::map<int, HANDLE> contactMenuItems;
+ static std::map<size_t, HANDLE> contactMenuItems;
virtual int __cdecl RequestAuth(WPARAM, LPARAM);
virtual int __cdecl GrantAuth(WPARAM, LPARAM);
@@ -442,12 +442,12 @@ protected: static INT_PTR MenuChooseService(WPARAM wParam, LPARAM lParam);
- INT_PTR __cdecl IgnoreCommand(WPARAM, LPARAM);
- INT_PTR __cdecl BlockCommand(WPARAM, LPARAM);
+ int __cdecl IgnoreCommand(WPARAM, LPARAM);
+ int __cdecl BlockCommand(WPARAM, LPARAM);
INT_PTR __cdecl InviteCommand(WPARAM, LPARAM);
- INT_PTR __cdecl SetBookmarkCommand(WPARAM, LPARAM);
+ int __cdecl SetBookmarkCommand(WPARAM, LPARAM);
INT_PTR __cdecl ShowBookmarksCommand(WPARAM, LPARAM);
static int PrebuildContactMenu(WPARAM wParam, LPARAM lParam);
|