Mercurial > pidgin
changeset 12913:b1bc87b15818
[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 <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 17 Jan 2006 16:12:44 +0000 |
parents | 5f3d5f30590a |
children | 4f4c377a8905 |
files | plugins/win32/winprefs/winprefs.c |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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;