From e52132834312c3d956323650f4fa34e94b95325e Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 9 Jul 2013 15:47:48 +0000 Subject: forgotten to adapt wasuup git-svn-id: http://svn.miranda-ng.org/main/trunk@5298 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/WhatsApp/src/messages.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'protocols/WhatsApp/src/messages.cpp') diff --git a/protocols/WhatsApp/src/messages.cpp b/protocols/WhatsApp/src/messages.cpp index d45d3ec2d9..4dd3b10997 100644 --- a/protocols/WhatsApp/src/messages.cpp +++ b/protocols/WhatsApp/src/messages.cpp @@ -45,7 +45,7 @@ int WhatsAppProto::SendMsg(HANDLE hContact, int flags, const char *msg) LOG(""); int msgId = ++(this->msgId); - ForkThread( &WhatsAppProto::SendMsgWorker, this, new send_direct(hContact, msg, (HANDLE) msgId, flags & IS_CHAT)); + ForkThread( &WhatsAppProto::SendMsgWorker, new send_direct(hContact, msg, (HANDLE) msgId, flags & IS_CHAT)); return this->msgIdHeader + msgId; } @@ -134,7 +134,7 @@ void WhatsAppProto::onIsTyping(const std::string& paramString, bool paramBoolean int WhatsAppProto::UserIsTyping(HANDLE hContact,int type) { if (hContact && isOnline()) - ForkThread(&WhatsAppProto::SendTypingWorker, this, new send_typing(hContact, type)); + ForkThread(&WhatsAppProto::SendTypingWorker, new send_typing(hContact, type)); return 0; } -- cgit v1.2.3