diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-12-17 14:20:44 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-12-17 14:20:44 +0000 |
commit | 7d24302b79edea781e0f5bb5f449eb50dc88f275 (patch) | |
tree | 8f4cf6faa79907c858781cb151677dfc110f2654 /protocols/Skype/src/skype_database.cpp | |
parent | 2a3ee65d2ca5dbd9adef21a7fc4740f0d60dc8c7 (diff) |
- added proxy settings support
git-svn-id: http://svn.miranda-ng.org/main/trunk@2759 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_database.cpp')
-rw-r--r-- | protocols/Skype/src/skype_database.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_database.cpp b/protocols/Skype/src/skype_database.cpp index 887061afbe..9d87b9b2c7 100644 --- a/protocols/Skype/src/skype_database.cpp +++ b/protocols/Skype/src/skype_database.cpp @@ -27,7 +27,7 @@ void CSkypeProto::RaiseAuthRequestEvent( CCSDATA ccs = {0};
ccs.szProtoService = PSR_AUTH;
- ccs.hContact = this->AddContactBySid(sid, ::mir_a2u(nick));
+ ccs.hContact = this->AddContactBySid(sid, nick);
ccs.wParam = 0;
ccs.lParam = (LPARAM)⪯
pre.timestamp = timestamp;
@@ -64,7 +64,7 @@ void CSkypeProto::RaiseMessageReceivedEvent( CCSDATA ccs = {0};
ccs.szProtoService = PSR_MESSAGE;
- ccs.hContact = this->AddContactBySid(sid, ::mir_a2u(nick));
+ ccs.hContact = this->AddContactBySid(sid, nick);
ccs.wParam = 0;
ccs.lParam = (LPARAM)⪯
pre.flags = PREF_UTF;
@@ -84,7 +84,7 @@ void CSkypeProto::RaiseMessageSendedEvent( CCSDATA ccs = {0};
ccs.szProtoService = PSR_MESSAGE;
- ccs.hContact = this->AddContactBySid(sid, ::mir_a2u(nick));
+ ccs.hContact = this->AddContactBySid(sid, nick);
ccs.wParam = 0;
ccs.lParam = (LPARAM)⪯
pre.flags = PREF_UTF;
|