diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-06-04 19:29:50 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-06-04 19:29:50 +0000 |
commit | 7cf93849b55a578640195e58427f33d3254bc562 (patch) | |
tree | 557ffbb15a7ae3221524c1c2a60dcfe36c661ab0 /protocols/Skype/src/skype_contacts.cpp | |
parent | 5054e65a8e37c122ee249765f01ee0ece223ec5d (diff) |
Skype:
- fixed messaging in chats
- fixed incoming transfer status (probably fixed #358)
- fixed #357
git-svn-id: http://svn.miranda-ng.org/main/trunk@4884 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_contacts.cpp')
-rw-r--r-- | protocols/Skype/src/skype_contacts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Skype/src/skype_contacts.cpp b/protocols/Skype/src/skype_contacts.cpp index 79afd6b3e4..a8f7877647 100644 --- a/protocols/Skype/src/skype_contacts.cpp +++ b/protocols/Skype/src/skype_contacts.cpp @@ -200,7 +200,7 @@ HANDLE CSkypeProto::GetContactFromAuthEvent(HANDLE hEvent) HANDLE CSkypeProto::AddContact(CContact::Ref contact)
{
- mir_ptr<wchar_t> sid( ::mir_utf8decodeW(contact->GetSid()));
+ ptrW sid(::mir_utf8decodeW(contact->GetSid()));
CContact::AVAILABILITY availability;
contact->GetPropAvailability(availability);
@@ -211,7 +211,7 @@ HANDLE CSkypeProto::AddContact(CContact::Ref contact) hContact = (HANDLE)::CallService(MS_DB_CONTACT_ADD, 0, 0);
::CallService(MS_PROTO_ADDTOCONTACT, (WPARAM)hContact, (LPARAM)this->m_szModuleName);
- mir_ptr<wchar_t> nick(::mir_utf8decodeW(contact->GetNick()));
+ ptrW nick(::mir_utf8decodeW(contact->GetNick()));
switch(availability)
{
|