diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-04-26 19:41:06 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-04-26 19:41:06 +0000 |
commit | bed36b071fe082d34e5961bb5105e662f17aa7c6 (patch) | |
tree | 2b83b5c433675fa81c316fb336cd0377a5953ecd /protocols/Skype/src/skype_account.cpp | |
parent | a3422fd14b9201e7bfc6ecb28df71ed68c39c228 (diff) |
- sync was returned
- fixed contacts nick updating
- fixed eternal "connecting"
git-svn-id: http://svn.miranda-ng.org/main/trunk@4539 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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);
}
|