changeset 11440:5938f6b386fa

[gaim-migrate @ 13677] declarations after code committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Sun, 04 Sep 2005 18:22:45 +0000
parents 617e67e1c985
children 9f6df41df587
files plugins/win32/winprefs/winprefs.c
diffstat 1 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/win32/winprefs/winprefs.c	Sun Sep 04 18:05:48 2005 +0000
+++ b/plugins/win32/winprefs/winprefs.c	Sun Sep 04 18:22:45 2005 +0000
@@ -282,20 +282,23 @@
 static void
 wgaim_conv_im_blink (GaimAccount *account, char *sender, char *message, int flags)
 {
+	GaimConversation *conv;
+	GaimConvWindow *win;
+	GtkWidget *window;
 	if (gaim_prefs_get_bool(PREF_IM_BLINK) == FALSE)
 		return;
 
-	GaimConversation *conv = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, sender, account);
+	conv = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, sender, account);
 	if (conv == NULL) {
 	  gaim_debug_info("winprefs", "gar!\n");
 	  return;
 	}
-	GaimConvWindow *win = gaim_conversation_get_window(conv);
+	win = gaim_conversation_get_window(conv);
 	if (win == NULL) {
 	  gaim_debug_info("winprefs", "gar2!\n");
 	  return;
 	}
-	GtkWidget *window = GAIM_GTK_WINDOW(win)->window;
+	window = GAIM_GTK_WINDOW(win)->window;
 
 	if (MyFlashWindowEx) {
 		FLASHWINFO info;