comparison src/ft.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 ecf3ce2e2ab1
children 1aa83016fbe0
comparison
equal deleted inserted replaced
10245:c143a3fac58d 10246:a66cf83552dc
121 GaimMessageFlags flags = GAIM_MESSAGE_SYSTEM; 121 GaimMessageFlags flags = GAIM_MESSAGE_SYSTEM;
122 122
123 g_return_if_fail(xfer != NULL); 123 g_return_if_fail(xfer != NULL);
124 g_return_if_fail(message != NULL); 124 g_return_if_fail(message != NULL);
125 125
126 conv = gaim_find_conversation_with_account(xfer->who, gaim_xfer_get_account(xfer)); 126 conv = gaim_find_conversation_with_account(GAIM_CONV_IM, xfer->who,
127 gaim_xfer_get_account(xfer));
127 128
128 if (conv == NULL) 129 if (conv == NULL)
129 return; 130 return;
130 131
131 gs_message = g_string_new(message); 132 gs_message = g_string_new(message);