comparison src/protocols/yahoo/yahoo.c @ 10246:a66cf83552dc

[gaim-migrate @ 11386] I changed gaim_find_conversation and gaim_find_conversation_with_account The first parameter is now one of GAIM_CONV_IM, GAIM_CONV_CHAT or GAIM_CONV_ANY. Unfortunately, this changes a bajillion files. Please look over this and make sure I use the correct type everywhere. Especially in Novell and MSN, and somewhat in SILC. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 23 Nov 2004 06:14:15 +0000
parents 95ca0db2d01d
children 35068a87b59d
comparison
equal deleted inserted replaced
10245:c143a3fac58d 10246:a66cf83552dc
1808 serv_remove_buddy(account->gc, buddy, group); 1808 serv_remove_buddy(account->gc, buddy, group);
1809 gaim_blist_remove_buddy(buddy); 1809 gaim_blist_remove_buddy(buddy);
1810 1810
1811 serv_add_deny(account->gc, name); 1811 serv_add_deny(account->gc, name);
1812 1812
1813 conv = gaim_find_conversation_with_account(name, account); 1813 /* The follow should really be done by the core... */
1814 conv = gaim_find_conversation_with_account(GAIM_CONV_IM, name, account);
1814 1815
1815 if (conv != NULL) 1816 if (conv != NULL)
1816 gaim_conversation_update(conv, GAIM_CONV_UPDATE_REMOVE); 1817 gaim_conversation_update(conv, GAIM_CONV_UPDATE_REMOVE);
1817 1818
1818 g_free(name); 1819 g_free(name);