[gtk+] sizegroup: refactor
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] sizegroup: refactor
- Date: Wed, 28 Oct 2015 18:57:42 +0000 (UTC)
commit 8fea3b02c93c5243e7cb7f352b0ae9e2b6d2414f
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]