diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-15 09:52:58 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-15 09:52:58 +0000 |
commit | 913eb113dd70d059037424bfc6cf231dee896ac3 (patch) | |
tree | 077211c9dbf53b821259170cab683b33debd4323 /protocols/Skype/src/skype_contacts.cpp | |
parent | 02fa05ac26b620ebf5a761f8f7b4244e54309607 (diff) |
code cleaning & standardization
git-svn-id: http://svn.miranda-ng.org/main/trunk@4952 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_contacts.cpp')
-rw-r--r-- | protocols/Skype/src/skype_contacts.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_contacts.cpp b/protocols/Skype/src/skype_contacts.cpp index 9264ca50af..12e4eb4b82 100644 --- a/protocols/Skype/src/skype_contacts.cpp +++ b/protocols/Skype/src/skype_contacts.cpp @@ -383,7 +383,7 @@ void __cdecl CSkypeProto::SearchBySidAsync(void* arg) CContactSearch::Ref search;
this->CreateIdentitySearch(::mir_u2a(sid), search);
search.fetch();
- search->SetProtoInfo(this, (HANDLE)SKYPE_SEARCH_BYSID);
+ search->SetProtoInfo((HANDLE)SKYPE_SEARCH_BYSID);
bool valid;
if (!search->IsValid(valid) || !valid || !search->Submit())
@@ -400,7 +400,7 @@ void __cdecl CSkypeProto::SearchByEmailAsync(void* arg) CContactSearch::Ref search;
this->CreateContactSearch(search);
search.fetch();
- search->SetProtoInfo(this, (HANDLE)SKYPE_SEARCH_BYEMAIL);
+ search->SetProtoInfo((HANDLE)SKYPE_SEARCH_BYEMAIL);
bool valid;
if (!search->AddEmailTerm(::mir_u2a(email), valid) || !valid || !search->Submit())
@@ -422,7 +422,7 @@ void __cdecl CSkypeProto::SearchByNamesAsync(void* arg) CContactSearch::Ref search;
this->CreateContactSearch(search);
search.fetch();
- search->SetProtoInfo(this, (HANDLE)SKYPE_SEARCH_BYNAMES);
+ search->SetProtoInfo((HANDLE)SKYPE_SEARCH_BYNAMES);
bool valid;
if (nick.length() != 0)
|