diff options
author | Benjamin Otte <otte@redhat.com> | 2012-04-18 21:48:05 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-05-11 16:42:12 +0200 |
commit | cc6c7c5e16f29bf931b686020044e432f821a21c (patch) | |
tree | a90e2d8d7be4dfecef616710052f728a0c8309f5 /gtk/gtkcssshorthandproperty.c | |
parent | c9f01ffb43378b6e44e420f79bc49cb5c8fe0706 (diff) | |
download | gtk+-cc6c7c5e16f29bf931b686020044e432f821a21c.tar.gz |
cssshorthand: Don't pass base file anymore
It's part of the parser now.
Diffstat (limited to 'gtk/gtkcssshorthandproperty.c')
-rw-r--r-- | gtk/gtkcssshorthandproperty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcssshorthandproperty.c b/gtk/gtkcssshorthandproperty.c index f63d3a51de..96e8c63463 100644 --- a/gtk/gtkcssshorthandproperty.c +++ b/gtk/gtkcssshorthandproperty.c @@ -119,7 +119,7 @@ gtk_css_shorthand_property_parse_value (GtkStyleProperty *property, data[i] = _gtk_css_inherit_value_new (); } } - else if (!shorthand->parse (shorthand, data, parser, base)) + else if (!shorthand->parse (shorthand, data, parser)) { for (i = 0; i < shorthand->subproperties->len; i++) { |