diff options
author | Benjamin Otte <otte@redhat.com> | 2012-07-12 03:43:15 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-08-28 15:40:56 +0200 |
commit | 9b4ed662181cabde506248cf8b344420a0300a3e (patch) | |
tree | 50063700a3f95fa1af072c20202c0387ffff4040 /gtk/gtkcssrepeatvalue.c | |
parent | 9b953829fbf1332d00c2ca8a99c7da5e4bda8c64 (diff) | |
download | gtk+-9b4ed662181cabde506248cf8b344420a0300a3e.tar.gz |
css: Pass property_id to compute function
This is a reorganization of how value computing should be done.
Previously the GtkCssStyleProperty.compute vfunc was supposed to take
care of special cases when it needed those for computation. However,
this proved to be very complicated in cases where values were nested and
only the last value (of a common type) needed to be special cased.
A common example for this was the fallback handling for unresolvable
colors.
Now, we pass the property's ID along with all compute functions so we
can do the special casing where it's necessary.
Note that no actual changes happen in this commit. This will happen in
follow-ups.
Diffstat (limited to 'gtk/gtkcssrepeatvalue.c')
-rw-r--r-- | gtk/gtkcssrepeatvalue.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkcssrepeatvalue.c b/gtk/gtkcssrepeatvalue.c index 4151f9d48e..97fe41f349 100644 --- a/gtk/gtkcssrepeatvalue.c +++ b/gtk/gtkcssrepeatvalue.c @@ -35,6 +35,7 @@ gtk_css_value_repeat_free (GtkCssValue *value) static GtkCssValue * gtk_css_value_repeat_compute (GtkCssValue *value, + guint property_id, GtkStyleContext *context) { return _gtk_css_value_ref (value); |