- Timestamp:
- 2015-08-08T04:29:49Z (9 years ago)
- Branches:
- master
- Children:
- 83f179d6
- Parents:
- 4850065
- git-author:
- dequis <dx@…> (02-08-15 19:21:56)
- git-committer:
- dequis <dx@…> (08-08-15 04:29:49)
- Location:
- protocols
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/bee.h
r4850065 r6b56512 119 119 gboolean (*chat_msg)(bee_t *bee, struct groupchat *c, bee_user_t *bu, const char *msg, time_t sent_at); 120 120 gboolean (*chat_add_user)(bee_t *bee, struct groupchat *c, bee_user_t *bu); 121 gboolean (*chat_remove_user)(bee_t *bee, struct groupchat *c, bee_user_t *bu );121 gboolean (*chat_remove_user)(bee_t *bee, struct groupchat *c, bee_user_t *bu, const char *reason); 122 122 gboolean (*chat_topic)(bee_t *bee, struct groupchat *c, const char *new_topic, bee_user_t *bu); 123 123 gboolean (*chat_name_hint)(bee_t *bee, struct groupchat *c, const char *name); -
protocols/bee_chat.c
r4850065 r6b56512 230 230 231 231 if (bee->ui->chat_remove_user && bu) { 232 bee->ui->chat_remove_user(bee, c, bu );232 bee->ui->chat_remove_user(bee, c, bu, reason); 233 233 } 234 234 }
Note: See TracChangeset
for help on using the changeset viewer.