From 61b053584dec4563b308f98d210d7d0b84999983 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Fri, 17 May 2013 20:44:31 +0000 Subject: First approach of a chats reworking. Note, new code will not work! git-svn-id: http://svn.miranda-ng.org/main/trunk@4715 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Skype/src/skype_contacts.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'protocols/Skype/src/skype_contacts.cpp') diff --git a/protocols/Skype/src/skype_contacts.cpp b/protocols/Skype/src/skype_contacts.cpp index ff50d880f5..e323e654bc 100644 --- a/protocols/Skype/src/skype_contacts.cpp +++ b/protocols/Skype/src/skype_contacts.cpp @@ -289,29 +289,6 @@ void __cdecl CSkypeProto::LoadContactList(void* data) } } -void __cdecl CSkypeProto::LoadChatList(void*) -{ - this->Log(L"Updating group chats list"); - CConversation::Refs conversations; - this->GetConversationList(conversations); - - for (uint i = 0; i < conversations.size(); i++) - { - auto conversation = conversations[i]; - - CConversation::TYPE type; - conversation->GetPropType(type); - - CConversation::MY_STATUS status; - conversation->GetPropMyStatus(status); - if (type == CConversation::CONFERENCE && status == CConversation::CONSUMER) - { - this->AddChatRoom(conversation); - this->JoinToChat(conversation, false); - } - } -} - void __cdecl CSkypeProto::LoadAuthWaitList(void*) { CContact::Refs authContacts; -- cgit v1.2.3