diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-08-28 18:08:32 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-08-28 18:08:32 +0000 |
commit | 900cb3561405d385c70fc57c94e46bc1e4fa178b (patch) | |
tree | 3f77c180f15589b7911ac4b3ea52eba8c8ab8e03 /protocols/Tox/src/tox_account.cpp | |
parent | 3a124f929481fbb59c5cb49618fc19c01cd63833 (diff) |
Tox: actions support (messages started with '/me')
git-svn-id: http://svn.miranda-ng.org/main/trunk@10334 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_account.cpp')
-rw-r--r-- | protocols/Tox/src/tox_account.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_account.cpp b/protocols/Tox/src/tox_account.cpp index 8d3b0715f6..7ab6038480 100644 --- a/protocols/Tox/src/tox_account.cpp +++ b/protocols/Tox/src/tox_account.cpp @@ -27,6 +27,7 @@ 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, OnFriendAction, this);
tox_callback_typing_change(tox, OnTypingChanged, this);
tox_callback_name_change(tox, OnFriendNameChange, this);
tox_callback_status_message(tox, OnStatusMessageChanged, this);
|