[gtk+/wip/cssvalue: 23/142] stylecontext: On failure, exit the loop, don't try again
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/cssvalue: 23/142] stylecontext: On failure, exit the loop, don't try again
- Date: Sat, 7 Apr 2012 19:48:18 +0000 (UTC)
commit b9ba8954741c66a7094e96b3ad781ee8bf8f4866
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]