diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-17 18:09:09 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-17 18:09:09 +0000 |
commit | b497270abce201182a5fe19f13f2d74b4716a7ee (patch) | |
tree | d598c7efbdf3f08b9fd39fdadf1de5cc0e86b7ea /protocols | |
parent | 54efd8968c7990f17678ad9b823c1a6e71ad91bb (diff) |
fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@12891 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Tox/src/tox_core.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Tox/src/tox_core.cpp b/protocols/Tox/src/tox_core.cpp index cccccd224c..769383c9cb 100644 --- a/protocols/Tox/src/tox_core.cpp +++ b/protocols/Tox/src/tox_core.cpp @@ -53,10 +53,10 @@ bool CToxProto::InitToxCore() tox_callback_friend_status(tox, OnUserStatusChanged, this);
tox_callback_friend_connection_status(tox, OnConnectionStatusChanged, this);
// transfers
- // tox_callback_file_recv_control(tox, OnFileRequest, this);
- // tox_callback_file_recv(tox, OnFriendFile, this);
- // tox_callback_file_recv_chunk(tox, OnFileReceiveData, this);
- // tox_callback_file_chunk_request(tox, OnFileSendData, this);
+ tox_callback_file_recv_control(tox, OnFileRequest, this);
+ tox_callback_file_recv(tox, OnFriendFile, this);
+ tox_callback_file_recv_chunk(tox, OnFileReceiveData, this);
+ tox_callback_file_chunk_request(tox, OnFileSendData, this);
// group chats
//tox_callback_group_invite(tox, OnGroupChatInvite, this);
// a/v
|