[gtk+/wip/cssvalue: 22/141] stylecontext: On failure, exit the loop, don't try again



commit 0bc012e3f77063db776d6ab6d690cca28bdce1f8
Author: Benjamin Otte <otte redhat com>
Date:   Tue Mar 20 03:44:26 2012 +0100

    stylecontext: On failure, exit the loop, don't try again
    
    Because we will fail again. And then we try again. And then we fail
    again. Ad infinitum.

 gtk/gtkstylecontext.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c
index 809605e..1ca099d 100644
--- a/gtk/gtkstylecontext.c
+++ b/gtk/gtkstylecontext.c
@@ -2469,7 +2469,7 @@ gtk_style_context_get_style_valist (GtkStyleContext *context,
                      G_STRLOC,
                      g_type_name (widget_type),
                      prop_name);
-          continue;
+          break;
         }
 
       peek_value = _gtk_style_context_peek_style_property (context, widget_type,
@@ -2484,6 +2484,7 @@ gtk_style_context_get_style_valist (GtkStyleContext *context,
                      G_VALUE_TYPE_NAME (peek_value),
                      error);
           g_free (error);
+          break;
         }
 
       prop_name = va_arg (args, const gchar *);



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