[empathy] Fix previous patch.



commit 9600d59c5317b692e3549e0bcc293607cda5fb4e
Author: Steve Frécinaux <code istique net>
Date:   Mon Sep 14 21:10:36 2009 +0200

    Fix previous patch.
    
    Sometimes, reworking trivial patches goes bad...

 libempathy-gtk/empathy-ui-utils.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c
index 3cf754f..aeb665c 100644
--- a/libempathy-gtk/empathy-ui-utils.c
+++ b/libempathy-gtk/empathy-ui-utils.c
@@ -1295,15 +1295,15 @@ empathy_window_present (GtkWindow *window,
 			gboolean   steal_focus)
 {
 	guint32 timestamp;
-	GdkWindow *window;
+	GdkWindow *gdk_window;
 
 	g_return_if_fail (GTK_IS_WINDOW (window));
 
 	/* Move the window to the current workspace before trying to show it.
 	 * This is the behaviour people expect when clicking on the statusbar icon. */
-	window = gtk_widget_get_window (GTK_WIDGET (window));
-	if (window)
-		gdk_x11_window_move_to_current_desktop (window);
+	gdk_window = gtk_widget_get_window (GTK_WIDGET (window));
+	if (gdk_window)
+		gdk_x11_window_move_to_current_desktop (gdk_window);
 
 	timestamp = gtk_get_current_event_time ();
 	gtk_window_present_with_time (window, timestamp);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]