From 6dc3113edc484d9ac1bb1ca248177e279658d31e Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Mon, 16 Jul 2012 14:28:58 +0200 Subject: cssstyleproperty: Get rid of unused API Both _gtk_css_style_property_print_value() and _gtk_css_style_property_compute_value() aren't necessary anymore and are replaced by _gtk_css_value_print() and _gtk_css_value_comptue() respectively. --- gtk/gtkcssvalue.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gtk/gtkcssvalue.c') diff --git a/gtk/gtkcssvalue.c b/gtk/gtkcssvalue.c index d07a1ca113..5d5d39227f 100644 --- a/gtk/gtkcssvalue.c +++ b/gtk/gtkcssvalue.c @@ -61,6 +61,20 @@ _gtk_css_value_unref (GtkCssValue *value) value->class->free (value); } +/** + * _gtk_css_value_compute: + * @value: the value to compute from + * @property_id: the ID of the property to compute + * @context: the context to use for resolving + * + * Converts the specified @value into the computed value for the CSS + * property given by @property_id using the information in @context. + * This step is explained in detail in + *