diff options
author | Benjamin Otte <otte@redhat.com> | 2012-03-26 06:46:29 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-04-17 08:59:11 +0200 |
commit | 58e4fdf911377c303858d0eebbd2594505dd3a21 (patch) | |
tree | 168be147511201c3f0a92b48b959f54c2d9d6416 /gtk/gtkcssstylepropertyprivate.h | |
parent | b728cfd3e8af1b07fb5f15a22ed9b144b190d37e (diff) | |
download | gtk+-58e4fdf911377c303858d0eebbd2594505dd3a21.tar.gz |
styleproperty: Make print_func take a GtkCssValue
Also, constify GtkCssValue getters, so we can pass a const GtkCssValue
to the print_func.
Diffstat (limited to 'gtk/gtkcssstylepropertyprivate.h')
-rw-r--r-- | gtk/gtkcssstylepropertyprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcssstylepropertyprivate.h b/gtk/gtkcssstylepropertyprivate.h index 21c57b9e65..391f418fd3 100644 --- a/gtk/gtkcssstylepropertyprivate.h +++ b/gtk/gtkcssstylepropertyprivate.h @@ -39,7 +39,7 @@ typedef gboolean (* GtkCssStylePropertyParseFunc) (GtkCssStyleProperty GtkCssParser *parser, GFile *base); typedef void (* GtkCssStylePropertyPrintFunc) (GtkCssStyleProperty *property, - const GValue *value, + const GtkCssValue *value, GString *string); typedef GtkCssValue * (* GtkCssStylePropertyComputeFunc)(GtkCssStyleProperty *property, GtkStyleContext *context, |