diff options
author | Benjamin Otte <otte@redhat.com> | 2012-07-16 14:48:43 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-08-28 15:42:23 +0200 |
commit | 0e2f35ed882ab11d010866d32f2f65232145b8d0 (patch) | |
tree | f8e1af229adca8cdcce0b08808c3f6571615dd22 /gtk/gtkcssrepeatvalue.c | |
parent | 9e7e65ca6e01246cf9eea156f0153014b58e4d36 (diff) | |
download | gtk+-0e2f35ed882ab11d010866d32f2f65232145b8d0.tar.gz |
css: Introduce dependencies for value computations
When values are computed, they might depend on various other values and
we need to track this so we can update the values when those other
values change. This is the first step in making that happen.
This patch does not do any dependency tracking at all, instead it uses
GTK_CSS_DEPENDS_ON_EVERYTHING as a sort of FIXME.
Diffstat (limited to 'gtk/gtkcssrepeatvalue.c')
-rw-r--r-- | gtk/gtkcssrepeatvalue.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/gtkcssrepeatvalue.c b/gtk/gtkcssrepeatvalue.c index 97fe41f349..6f070727e8 100644 --- a/gtk/gtkcssrepeatvalue.c +++ b/gtk/gtkcssrepeatvalue.c @@ -34,9 +34,10 @@ gtk_css_value_repeat_free (GtkCssValue *value) } static GtkCssValue * -gtk_css_value_repeat_compute (GtkCssValue *value, - guint property_id, - GtkStyleContext *context) +gtk_css_value_repeat_compute (GtkCssValue *value, + guint property_id, + GtkStyleContext *context, + GtkCssDependencies *dependencies) { return _gtk_css_value_ref (value); } |