From 8fea3b02c93c5243e7cb7f352b0ae9e2b6d2414f Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 15 Sep 2015 22:10:26 +0200 Subject: [PATCH] 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 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk/gtksizegroup.c b/gtk/gtksizegroup.c index 8732beb9ea..798b57133e 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)); } }