[gtk+/wip/otte/queue-resize: 12/32] sizegroup: refactor



commit 7b88c1470cfcc1d85348c34a4bfea8c79362228b
Author: Benjamin Otte <otte redhat com>
Date:   Tue Sep 15 22:10:26 2015 +0200

    sizegroup: refactor
    
    The code looks a lot less dangerous if it doesn't look like we're
    casting a random widget to a container.

 gtk/gtksizegroup.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gtk/gtksizegroup.c b/gtk/gtksizegroup.c
index 8732beb..798b571 100644
--- a/gtk/gtksizegroup.c
+++ b/gtk/gtksizegroup.c
@@ -227,15 +227,15 @@ real_queue_resize (GtkWidget *widget)
 
           G_GNUC_BEGIN_IGNORE_DEPRECATIONS;
           if (GTK_IS_RESIZE_CONTAINER (widget))
-            break;
+            {
+              gtk_container_queue_resize_handler (GTK_CONTAINER (widget));
+              break;
+            }
           G_GNUC_END_IGNORE_DEPRECATIONS;
 
           widget = gtk_widget_get_parent (widget);
         }
       while (widget);
-
-      if (widget)
-        gtk_container_queue_resize_handler (GTK_CONTAINER (widget));
     }
 }
 


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