diff options
Diffstat (limited to 'protocols/Skype/src')
-rw-r--r-- | protocols/Skype/src/skype_contacts.cpp | 2 | ||||
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Skype/src/skype_contacts.cpp b/protocols/Skype/src/skype_contacts.cpp index 17707ce680..a4f9b0bb16 100644 --- a/protocols/Skype/src/skype_contacts.cpp +++ b/protocols/Skype/src/skype_contacts.cpp @@ -113,7 +113,7 @@ void CSkypeProto::OnContactChanged(CContact::Ref contact, int prop) }
}
-void CSkypeProto::OnContactListChanged(const ContactRef& contact)
+void CSkypeProto::OnContactListChanged(CContact::Ref contact)
{
bool result;
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index 0e89f4580b..313b231465 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -246,7 +246,7 @@ protected: CContact::Refs contactList;
CTransfer::Refs transferList;
CContactGroup::Ref commonList;
- CContactGroup::Ref authWaitList;
+ CContactGroup::Ref authWaitList;
// account
void OnAccountChanged(int prop);
@@ -331,14 +331,14 @@ protected: void OnContactFinded(CContact::Ref contact, HANDLE hSearch);
void OnContactChanged(CContact::Ref contact, int prop);
- void OnContactListChanged(const ContactRef& contact);
+ void OnContactListChanged(CContact::Ref contact);
bool IsProtoContact(HANDLE hContact);
HANDLE GetContactBySid(const wchar_t* sid);
HANDLE GetContactFromAuthEvent(HANDLE hEvent);
HANDLE AddContact(CContact::Ref contact);
- bool IsContactOnline(HANDLE hContact);
+ bool IsContactOnline(HANDLE hContact);
void SetAllContactStatus(int status);
void __cdecl LoadContactList(void*);
|