From 1229cee3091839af4dd181e28b55e4823079007e Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Sun, 5 May 2013 08:38:57 +0000 Subject: - reworked invitation to chat - fixed chat contact's statuses - added "Spawn conversation" button in contact dialog - StringList now based on stl git-svn-id: http://svn.miranda-ng.org/main/trunk@4586 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Skype/src/skype_account.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'protocols/Skype/src/skype_account.cpp') diff --git a/protocols/Skype/src/skype_account.cpp b/protocols/Skype/src/skype_account.cpp index fa29bafbef..3de83ee8dd 100644 --- a/protocols/Skype/src/skype_account.cpp +++ b/protocols/Skype/src/skype_account.cpp @@ -225,7 +225,6 @@ void CSkypeProto::OnLoggedIn() this->LoadContactList(reinterpret_cast(static_cast(true))); this->LoadAuthWaitList(this); - fetch(this->transferList); this->SetServerStatus(this->m_iDesiredStatus); @@ -243,7 +242,7 @@ void CSkypeProto::SetServerStatus(int iNewStatus) int oldStatus = m_iStatus; m_iStatus = iNewStatus; - CContact::AVAILABILITY availability = this->MirandaToSkypeStatus(iNewStatus); + CContact::AVAILABILITY availability = CSkypeProto::MirandaToSkypeStatus(iNewStatus); if (availability != CContact::UNKNOWN) this->account->SetAvailability(availability); @@ -261,7 +260,7 @@ void CSkypeProto::OnLoggedOut(CAccount::LOGOUTREASON reason) this->m_iStatus = ID_STATUS_OFFLINE; this->SendBroadcast( ACKTYPE_LOGIN, ACKRESULT_FAILED, - NULL, this->SkypeToMirandaLoginError(reason)); + NULL, CSkypeProto::SkypeToMirandaLoginError(reason)); this->ShowNotification(CSkypeProto::LogoutReasons[reason - 1]); -- cgit v1.2.3