Mercurial > pidgin
diff src/protocols/silc/chat.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 | e74eb0d11f86 |
| children | bec9130b24d2 |
line wrap: on
line diff
--- a/src/protocols/silc/chat.c Tue Nov 23 05:53:59 2004 +0000 +++ b/src/protocols/silc/chat.c Tue Nov 23 06:14:15 2004 +0000 @@ -967,8 +967,8 @@ /* Add channel to Gaim */ channel->context = SILC_32_TO_PTR(++sg->channel_ids); serv_got_joined_chat(gc, sg->channel_ids, channel->channel_name); - convo = gaim_find_conversation_with_account(channel->channel_name, - sg->account); + convo = gaim_find_conversation_with_account(GAIM_CONV_CHAT, + channel->channel_name, sg->account); if (!convo) return;
