Changeset 4757
- Timestamp:
- 05/12/07 02:29:23 (1 year ago)
- Files:
-
- wired/trunk/wired/chats.c (modified) (1 diff)
- wired/trunk/wired/chats.h (modified) (1 diff)
- wired/trunk/wired/commands.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wired/trunk/wired/chats.c
r4754 r4757 366 366 367 367 368 void wd_chat_broadcast_ leave(wd_chat_t *chat, wd_user_t *user) {368 void wd_chat_broadcast_user_leave(wd_chat_t *chat, wd_user_t *user) { 369 369 wd_broadcast(chat, 303, WI_STR("%u%c%u"), 370 370 chat->cid, WD_FIELD_SEPARATOR, wired/trunk/wired/chats.h
r4754 r4757 56 56 void wd_chat_reply_topic(wd_chat_t *); 57 57 void wd_chat_broadcast_topic(wd_chat_t *); 58 void wd_chat_broadcast_ leave(wd_chat_t *, wd_user_t *);58 void wd_chat_broadcast_user_leave(wd_chat_t *, wd_user_t *); 59 59 60 60 void wd_chat_set_topic(wd_chat_t *, wd_topic_t *); wired/trunk/wired/commands.c
r4754 r4757 274 274 wd_user_set_state(user, WD_USER_DISCONNECTED); 275 275 276 wd_chat_broadcast_ leave(wd_public_chat, user);276 wd_chat_broadcast_user_leave(wd_public_chat, user); 277 277 } 278 278 … … 1179 1179 1180 1180 wd_chat_remove_user(chat, user); 1181 wd_chat_broadcast_ leave(chat, user);1181 wd_chat_broadcast_user_leave(chat, user); 1182 1182 } 1183 1183
