summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_account.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2013-04-26 19:41:06 +0000
committerAlexander Lantsev <aunsane@gmail.com>2013-04-26 19:41:06 +0000
commitbed36b071fe082d34e5961bb5105e662f17aa7c6 (patch)
tree2b83b5c433675fa81c316fb336cd0377a5953ecd /protocols/Skype/src/skype_account.cpp
parenta3422fd14b9201e7bfc6ecb28df71ed68c39c228 (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.cpp4
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);
}