Changes in protocols/bee_chat.c [345577b:5ebff60]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/bee_chat.c
r345577b r5ebff60 95 95 } 96 96 97 void imcb_chat_msg(struct groupchat *c, const char *who, char *msg, guint32flags, time_t sent_at)97 void imcb_chat_msg(struct groupchat *c, const char *who, char *msg, uint32_t flags, time_t sent_at) 98 98 { 99 99 struct im_connection *ic = c->ic; 100 100 bee_t *bee = ic->bee; 101 101 bee_user_t *bu; 102 gboolean temp = FALSE;102 gboolean temp; 103 103 char *s; 104 104 105 if (handle_is_self(ic, who) && !(flags & OPT_SELFMESSAGE)) { 105 /* Gaim sends own messages through this too. IRC doesn't want this, so kill them */ 106 if (handle_is_self(ic, who)) { 106 107 return; 107 108 } … … 121 122 122 123 if (bee->ui->chat_msg) { 123 bee->ui->chat_msg(bee, c, bu, msg, flags,sent_at);124 bee->ui->chat_msg(bee, c, bu, msg, sent_at); 124 125 } 125 126 … … 229 230 230 231 if (bee->ui->chat_remove_user && bu) { 231 bee->ui->chat_remove_user(bee, c, bu , reason);232 bee->ui->chat_remove_user(bee, c, bu); 232 233 } 233 234 }
Note: See TracChangeset
for help on using the changeset viewer.