# HG changeset patch # User Richard Laager # Date 1137514364 0 # Node ID b1bc87b158185b0281d8c07642a8bae5a527d576 # Parent 5f3d5f30590a26205fde3bc508806437c7d2f812 [gaim-migrate @ 15266] Part of SF Patch #1408093 from Philip Walford "wgaim_conv_im_blink had the wrong signature and failed to correctly determine the conversation associated with a new message." committer: Tailor Script diff -r 5f3d5f30590a -r b1bc87b15818 plugins/win32/winprefs/winprefs.c --- a/plugins/win32/winprefs/winprefs.c Tue Jan 17 15:43:55 2006 +0000 +++ b/plugins/win32/winprefs/winprefs.c Tue Jan 17 16:12:44 2006 +0000 @@ -280,15 +280,14 @@ /* FlashWindowEx is only supported by Win98+ and WinNT5+. If it's not supported we do it our own way */ static void -wgaim_conv_im_blink (GaimAccount *account, char *sender, char *message, int flags) +wgaim_conv_im_blink (GaimAccount *account, char *sender, char *buffer, + GaimConversation *conv, int flags, void * data) { - GaimConversation *conv; GaimGtkWindow *win; GtkWidget *window; if (gaim_prefs_get_bool(PREF_IM_BLINK) == FALSE) return; - conv = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, sender, account); if (conv == NULL) { gaim_debug_info("winprefs", "gar!\n"); return;