1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-08 04:36:35 +01:00

remove group self-timeout callback

This commit is contained in:
Jfreegman
2015-04-12 21:56:42 -04:00
parent b66a1f6ba1
commit a360afe08a
5 changed files with 0 additions and 34 deletions

View File

@@ -556,7 +556,6 @@ static void init_tox_callbacks(Tox *m)
tox_callback_group_nick_change(m, on_group_nick_change, NULL);
tox_callback_group_topic_change(m, on_group_topic_change, NULL);
tox_callback_group_self_join(m, on_group_self_join, NULL);
tox_callback_group_self_timeout(m, on_group_self_timeout, NULL);
tox_callback_group_rejected(m, on_group_rejected, NULL);
}