[gaim-migrate @ 13677]

Sun, 04 Sep 2005 18:22:45 +0000

author
Daniel Atallah <datallah@pidgin.im>
date
Sun, 04 Sep 2005 18:22:45 +0000
changeset 11440
b9f3c9c82b13
parent 11439
e76bc2f9deb0
child 11441
ee78a09db223

[gaim-migrate @ 13677]
declarations after code

plugins/win32/winprefs/winprefs.c file | annotate | diff | comparison | revisions
--- 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;

mercurial