[gtk+/wip/csoriano/pathbar-prototype: 2671/2683] gtkhidingbox: don't nest unneeded loop



commit 74f0fcf18d7a4aae5368fc7f9f48097608e2dd98
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]