diff options
author | Benjamin Otte <otte@redhat.com> | 2012-04-18 21:52:36 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-05-11 16:42:12 +0200 |
commit | 1367ef7e54c034347e5f281fec734e68751cd6fd (patch) | |
tree | ed9b5e8fcc338840ec7f2ad3668d3273ca4f8d82 /gtk/gtkcsscustomproperty.c | |
parent | cc6c7c5e16f29bf931b686020044e432f821a21c (diff) | |
download | gtk+-1367ef7e54c034347e5f281fec734e68751cd6fd.tar.gz |
cssstylefuncs: Remove base argument
The GtkCssParser keeps track of the base file now.
Diffstat (limited to 'gtk/gtkcsscustomproperty.c')
-rw-r--r-- | gtk/gtkcsscustomproperty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcsscustomproperty.c b/gtk/gtkcsscustomproperty.c index 8f50d8a5e2..9c0cb81e0c 100644 --- a/gtk/gtkcsscustomproperty.c +++ b/gtk/gtkcsscustomproperty.c @@ -69,7 +69,7 @@ gtk_css_custom_property_parse_value (GtkStyleProperty *property, { g_value_init (&value, gtk_css_custom_property_get_specified_type (custom->pspec)); - success = _gtk_css_style_parse_value (&value, parser, base); + success = _gtk_css_style_parse_value (&value, parser); } if (!success) |