diff options
author | George Hazan <george.hazan@gmail.com> | 2013-07-09 15:47:48 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-07-09 15:47:48 +0000 |
commit | e52132834312c3d956323650f4fa34e94b95325e (patch) | |
tree | 21fe856be6322cf844945c7dbde57c9fa0f25156 /protocols/WhatsApp/src/messages.cpp | |
parent | 6ea844fd51084c2e78fe400e1a9034c7960a922a (diff) |
forgotten to adapt wasuup
git-svn-id: http://svn.miranda-ng.org/main/trunk@5298 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/messages.cpp')
-rw-r--r-- | protocols/WhatsApp/src/messages.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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;
}
|