[gtk+/wip/gbsneto/hiding-box: 11/23] gtkhidingbox: don't nest unneeded loop
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/gbsneto/hiding-box: 11/23] gtkhidingbox: don't nest unneeded loop
- Date: Sat, 23 Apr 2016 23:59:54 +0000 (UTC)
commit 7682bafdd08b53b98763293b9523bf86e57d6e0f
Author: Carlos Soriano <csoriano gnome org>
Date: Wed Nov 4 16:31:41 2015 +0100
gtkhidingbox: don't nest unneeded loop
gtk/gtkhidingbox.c | 8 ++------
1 files changed, 2 insertions(+), 6 deletions(-)
---
diff --git a/gtk/gtkhidingbox.c b/gtk/gtkhidingbox.c
index 1a62d17..7f04665 100644
--- a/gtk/gtkhidingbox.c
+++ b/gtk/gtkhidingbox.c
@@ -250,12 +250,8 @@ gtk_hiding_box_size_allocate (GtkWidget *widget,
/* Hide the overflowing children even if they have visible=TRUE */
if (i >= n_visible_children)
{
- while (child)
- {
- gtk_widget_set_child_visible (child->data, FALSE);
- child = child->next;
- }
- break;
+ gtk_widget_set_child_visible (child->data, FALSE);
+ continue;
}
child_allocation.x = x;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]