summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_events.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-05-09 10:59:50 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-05-09 10:59:50 +0000
commit00145f285b89e19f3bf03b73f9fe10974240b48f (patch)
tree1405a6ceb876c0bd597b9dcf3505b23d61a07bc5 /protocols/Skype/src/skype_events.cpp
parentfa8d719d6352843c62d96f9f4fe8e5d8124720f4 (diff)
- 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
Diffstat (limited to 'protocols/Skype/src/skype_events.cpp')
-rw-r--r--protocols/Skype/src/skype_events.cpp4
1 files changed, 2 insertions, 2 deletions
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<wchar_t>(::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);