Mercurial > pidgin.yaz
diff 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 |
line wrap: on
line diff
--- a/src/server.c Wed Aug 13 20:13:06 2003 +0000 +++ b/src/server.c Wed Aug 13 21:08:29 2003 +0000 @@ -1192,13 +1192,12 @@ gaim_event_broadcast(event_got_typing, gc, name); - if (b != NULL) - if (state == GAIM_TYPING) - gaim_pounce_execute(gc->account, name, - GAIM_POUNCE_TYPING); - else - gaim_pounce_execute(gc->account, name, - GAIM_POUNCE_TYPING_STOPPED); + if (b != NULL) { + if (state == GAIM_TYPING) + gaim_pounce_execute(gc->account, name, GAIM_POUNCE_TYPING); + else + gaim_pounce_execute(gc->account, name, GAIM_POUNCE_TYPING_STOPPED); + } if (timeout > 0) gaim_im_start_typing_timeout(im, timeout);
