From 00145f285b89e19f3bf03b73f9fe10974240b48f Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 9 May 2013 10:59:50 +0000 Subject: - fake ack params thread reenabled; - Sended replaced with Sent; git-svn-id: http://svn.miranda-ng.org/main/trunk@4605 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Skype/src/skype_events.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'protocols/Skype/src/skype_events.cpp') diff --git a/protocols/Skype/src/skype_events.cpp b/protocols/Skype/src/skype_events.cpp index aaa5855ee3..d0af5aea8c 100644 --- a/protocols/Skype/src/skype_events.cpp +++ b/protocols/Skype/src/skype_events.cpp @@ -215,7 +215,7 @@ void CSkypeProto::OnChatEvent(CConversation::Ref &conversation, CMessage::Ref &m message->GetPropAuthor(author); if (::wcsicmp(mir_ptr(::mir_utf8decodeW(author)), this->login) == 0) - this->OnChatMessageSended(conversation, message); + this->OnChatMessageSent(conversation, message); else this->OnChatMessageReceived(conversation, message); } @@ -383,7 +383,7 @@ void CSkypeProto::OnSkypeEvent(CConversation::Ref conversation, CMessage::Ref me { CConversation::TYPE type; conversation->GetPropType(type); - if (type == CConversation::DIALOG) + if (type == 0 || type == CConversation::DIALOG) this->OnMessageEvent(conversation, message); else this->OnChatEvent(conversation, message); -- cgit v1.2.3