diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-08-20 19:58:30 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-08-20 19:58:30 +0000 |
commit | 8b5eb604f7dc0c87ce278feb52ba354f4e0ef6b2 (patch) | |
tree | 58e42eb96b9c2b474fc3c899e25facb35c12f588 /protocols/Tox/src/tox_account.cpp | |
parent | 32aac6884eeff071503b70d7e441244a5690382c (diff) |
Tox:
- added typing support
- updated tox core
git-svn-id: http://svn.miranda-ng.org/main/trunk@10245 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_account.cpp')
-rw-r--r-- | protocols/Tox/src/tox_account.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_account.cpp b/protocols/Tox/src/tox_account.cpp index 40ded847e6..7363f69c7c 100644 --- a/protocols/Tox/src/tox_account.cpp +++ b/protocols/Tox/src/tox_account.cpp @@ -27,7 +27,8 @@ void CToxProto::InitToxCore() tox = tox_new(&options);
tox_callback_friend_request(tox, OnFriendRequest, this);
tox_callback_friend_message(tox, OnFriendMessage, this);
- tox_callback_friend_action(tox, OnAction, this);
+ tox_callback_typing_change(tox, OnFriendTyping, this);
+ //tox_callback_friend_action(tox, OnAction, this);
tox_callback_name_change(tox, OnFriendNameChange, this);
tox_callback_status_message(tox, OnStatusMessageChanged, this);
tox_callback_user_status(tox, OnUserStatusChanged, this);
|