diff options
Diffstat (limited to 'protocols/Skype/src/skype_account.cpp')
-rw-r--r-- | protocols/Skype/src/skype_account.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Skype/src/skype_account.cpp b/protocols/Skype/src/skype_account.cpp index 5fd173ef1b..7396785e7a 100644 --- a/protocols/Skype/src/skype_account.cpp +++ b/protocols/Skype/src/skype_account.cpp @@ -223,7 +223,7 @@ void CSkypeProto::OnLoggedIn() this->LoadOwnInfo(this);
this->LoadChatList(this);
- this->LoadContactList(this);
+ this->LoadContactList(reinterpret_cast<void *>(static_cast<int>(true)));
this->LoadAuthWaitList(this);
@@ -235,7 +235,7 @@ void CSkypeProto::OnLoggedIn() void CSkypeProto::OnCblUpdated()
{
// reload our CL after skype CL fully synced
- this->LoadContactList(this);
+ this->LoadContactList(reinterpret_cast<void *>(static_cast<int>(false)));
this->LoadAuthWaitList(this);
}
|