changeset 11590:f67cc134cab4

[gaim-migrate @ 13860] compile committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Sun, 02 Oct 2005 18:47:35 +0000
parents 30947631262d
children 9835c4c5800d
files plugins/win32/winprefs/winprefs.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/win32/winprefs/winprefs.c	Sun Oct 02 18:28:29 2005 +0000
+++ b/plugins/win32/winprefs/winprefs.c	Sun Oct 02 18:47:35 2005 +0000
@@ -283,7 +283,7 @@
 wgaim_conv_im_blink (GaimAccount *account, char *sender, char *message, int flags)
 {
 	GaimConversation *conv;
-	GaimConvWindow *win;
+	GaimGtkWindow *win;
 	GtkWidget *window;
 	if (gaim_prefs_get_bool(PREF_IM_BLINK) == FALSE)
 		return;
@@ -293,12 +293,12 @@
 	  gaim_debug_info("winprefs", "gar!\n");
 	  return;
 	}
-	win = gaim_conversation_get_window(conv);
+	win = gaim_gtkconv_get_window(GAIM_GTK_CONVERSATION(conv));
 	if (win == NULL) {
 	  gaim_debug_info("winprefs", "gar2!\n");
 	  return;
 	}
-	window = GAIM_GTK_WINDOW(win)->window;
+	window = win->window;
 
 	if (MyFlashWindowEx) {
 		FLASHWINFO info;