Mercurial > pidgin
diff src/protocols/msn/switchboard.c @ 9846:c28d5b45624e
[gaim-migrate @ 10724]
A patch from Nathan Fredrickson that should make Gaim not play
sounds for people joining chats when you join chat.
Um, his explanation is better:
http://sourceforge.net/tracker/index.php?func=detail&aid=1008904&group_id=235&atid=300235
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Tue, 24 Aug 2004 04:12:28 +0000 |
| parents | c001be3c330e |
| children | 65b3156f9f48 |
line wrap: on
line diff
--- a/src/protocols/msn/switchboard.c Tue Aug 24 01:26:54 2004 +0000 +++ b/src/protocols/msn/switchboard.c Tue Aug 24 04:12:28 2004 +0000 @@ -68,7 +68,7 @@ if ((swboard->conv != NULL) && (gaim_conversation_get_type(swboard->conv) == GAIM_CONV_CHAT)) { - gaim_conv_chat_add_user(GAIM_CONV_CHAT(swboard->conv), user, NULL, GAIM_CBFLAGS_NONE); + gaim_conv_chat_add_user(GAIM_CONV_CHAT(swboard->conv), user, NULL, GAIM_CBFLAGS_NONE, TRUE); } else if (swboard->current_users > 1 || swboard->total_users > 1) { @@ -99,14 +99,14 @@ * tmp_user); */ gaim_conv_chat_add_user(GAIM_CONV_CHAT(swboard->conv), - tmp_user, NULL, GAIM_CBFLAGS_NONE); + tmp_user, NULL, GAIM_CBFLAGS_NONE, TRUE); } /* gaim_debug_info("msn", "[chat] We add ourselves.\n"); */ gaim_conv_chat_add_user(GAIM_CONV_CHAT(swboard->conv), gaim_account_get_username(account), - NULL, GAIM_CBFLAGS_NONE); + NULL, GAIM_CBFLAGS_NONE, TRUE); g_free(swboard->im_user); swboard->im_user = NULL;
