comparison plugins/notify.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 60db14d54914
children 2e01c503aa4f
comparison
equal deleted inserted replaced
10245:c143a3fac58d 10246:a66cf83552dc
232 static void 232 static void
233 im_sent_im(GaimAccount *account, char *receiver, const char *message) { 233 im_sent_im(GaimAccount *account, char *receiver, const char *message) {
234 GaimConversation *conv = NULL; 234 GaimConversation *conv = NULL;
235 235
236 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_send")) { 236 if (gaim_prefs_get_bool("/plugins/gtk/X11/notify/notify_send")) {
237 conv = gaim_find_conversation_with_account(receiver, account); 237 conv = gaim_find_conversation_with_account(GAIM_CONV_IM, receiver, account);
238 unnotify(conv, TRUE); 238 unnotify(conv, TRUE);
239 } 239 }
240 } 240 }
241 241
242 static void 242 static void