diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-01-18 22:45:37 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-01-18 22:45:37 +0000 |
commit | a8af35bf6e3de34405ce5dbc3b035039a9ee4806 (patch) | |
tree | 251e681398e7ed2b6a4707a1b1900822f3fbfae1 /protocols/Tox/src/tox_proto.cpp | |
parent | 78b13a92fb3bbc7d7ae3cc31e84a99758e392d4d (diff) |
Tox:
- added pause support for file sending
- added resuming for broken file transfers
- updated tox core
git-svn-id: http://svn.miranda-ng.org/main/trunk@11875 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_proto.cpp')
-rw-r--r-- | protocols/Tox/src/tox_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_proto.cpp b/protocols/Tox/src/tox_proto.cpp index e9d93dac78..b5be241c0f 100644 --- a/protocols/Tox/src/tox_proto.cpp +++ b/protocols/Tox/src/tox_proto.cpp @@ -253,7 +253,7 @@ int __cdecl CToxProto::SetAwayMsg(int iStatus, const PROTOCHAR *msg) {
if (IsOnline())
{
- WaitForSingleObject(hToxEvent, INFINITE);
+ //WaitForSingleObject(hToxEvent, INFINITE);
ptrA statusMessage(msg == NULL ? mir_strdup("") : mir_utf8encodeT(msg));
if (tox_set_status_message(tox, (uint8_t*)(char*)statusMessage, min(TOX_MAX_STATUSMESSAGE_LENGTH, strlen(statusMessage))) == TOX_ERROR)
|