diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-11-10 12:50:18 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-11-10 12:50:18 +0000 |
commit | 9239c8833dbe27e5257b043a7ca2e90288a9fedb (patch) | |
tree | 94b693e101c5e00fb15747ebbbd29e7dfb119319 | |
parent | 332d569fa0e4fdad90a7ef98dc8283baa44046a9 (diff) |
minor type fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@2273 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/Skype/src/skype_proto.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Skype/src/skype_proto.cpp b/protocols/Skype/src/skype_proto.cpp index 6c0a98fa63..e5b80508d2 100644 --- a/protocols/Skype/src/skype_proto.cpp +++ b/protocols/Skype/src/skype_proto.cpp @@ -152,9 +152,9 @@ DWORD_PTR __cdecl CSkypeProto:: GetCaps(int type, HANDLE hContact) return PF4_FORCEAUTH | PF4_FORCEADDED | PF4_SUPPORTTYPING | PF4_AVATARS |
PF4_OFFLINEFILES | PF4_IMSENDUTF | PF4_IMSENDOFFLINE;
case PFLAG_UNIQUEIDTEXT:
- return (INT_PTR)Translate("Skype Name");
+ return (DWORD_PTR)Translate("Skype Name");
case PFLAG_UNIQUEIDSETTING:
- return (INT_PTR) "sid";
+ return (DWORD_PTR) "sid";
default:
return 0;
}
|