From 9b4ed662181cabde506248cf8b344420a0300a3e Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Thu, 12 Jul 2012 03:43:15 +0200 Subject: 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. --- gtk/gtkcssrgbavalue.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gtk/gtkcssrgbavalue.c') diff --git a/gtk/gtkcssrgbavalue.c b/gtk/gtkcssrgbavalue.c index 88b8ea0767..fc1642c392 100644 --- a/gtk/gtkcssrgbavalue.c +++ b/gtk/gtkcssrgbavalue.c @@ -36,6 +36,7 @@ gtk_css_value_rgba_free (GtkCssValue *value) static GtkCssValue * gtk_css_value_rgba_compute (GtkCssValue *value, + guint property_id, GtkStyleContext *context) { return _gtk_css_value_ref (value); -- cgit v1.2.1