comparison src/server.c @ 6456:ccfdf9f2cdd1

[gaim-migrate @ 6965] Conversation placement by group now applies to chats in the buddy list as well. Also added functions for finding a chat by name, and getting its parent group. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 13 Aug 2003 21:08:29 +0000
parents 601c2a52d74a
children fb64cc87bc96
comparison
equal deleted inserted replaced
6455:cd0b5eaf9460 6456:ccfdf9f2cdd1
1190 1190
1191 b = gaim_find_buddy(gc->account, name); 1191 b = gaim_find_buddy(gc->account, name);
1192 1192
1193 gaim_event_broadcast(event_got_typing, gc, name); 1193 gaim_event_broadcast(event_got_typing, gc, name);
1194 1194
1195 if (b != NULL) 1195 if (b != NULL) {
1196 if (state == GAIM_TYPING) 1196 if (state == GAIM_TYPING)
1197 gaim_pounce_execute(gc->account, name, 1197 gaim_pounce_execute(gc->account, name, GAIM_POUNCE_TYPING);
1198 GAIM_POUNCE_TYPING); 1198 else
1199 else 1199 gaim_pounce_execute(gc->account, name, GAIM_POUNCE_TYPING_STOPPED);
1200 gaim_pounce_execute(gc->account, name, 1200 }
1201 GAIM_POUNCE_TYPING_STOPPED);
1202 1201
1203 if (timeout > 0) 1202 if (timeout > 0)
1204 gaim_im_start_typing_timeout(im, timeout); 1203 gaim_im_start_typing_timeout(im, timeout);
1205 } 1204 }
1206 1205