summaryrefslogtreecommitdiff
path: root/gtk/gtkstyleproperty.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2012-04-18 22:04:44 +0200
committerBenjamin Otte <otte@redhat.com>2012-05-11 16:42:12 +0200
commita7f238138ec567b14293e728222147e326ff7154 (patch)
tree5591872cacf04b410656970096780da4a4d0424c /gtk/gtkstyleproperty.c
parent6ee237ea59bfdffb6c242fcb7b7fca97c618b0a7 (diff)
downloadgtk+-a7f238138ec567b14293e728222147e326ff7154.tar.gz
styleproperty: Remove base argument
from _gtk_style_property_parse_value(). The GtkCssParser takes care of that now.
Diffstat (limited to 'gtk/gtkstyleproperty.c')
-rw-r--r--gtk/gtkstyleproperty.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk/gtkstyleproperty.c b/gtk/gtkstyleproperty.c
index 87234e043a..74245d6ce2 100644
--- a/gtk/gtkstyleproperty.c
+++ b/gtk/gtkstyleproperty.c
@@ -132,7 +132,6 @@ _gtk_style_property_init (GtkStyleProperty *property)
* _gtk_style_property_parse_value:
* @property: the property
* @parser: the parser to parse from
- * @base: the base file for @aprser
*
* Tries to parse the given @property from the given @parser into
* @value. The type that @value will be assigned is dependant on
@@ -148,8 +147,7 @@ _gtk_style_property_init (GtkStyleProperty *property)
**/
GtkCssValue *
_gtk_style_property_parse_value (GtkStyleProperty *property,
- GtkCssParser *parser,
- GFile *base)
+ GtkCssParser *parser)
{
GtkStylePropertyClass *klass;
@@ -158,7 +156,7 @@ _gtk_style_property_parse_value (GtkStyleProperty *property,
klass = GTK_STYLE_PROPERTY_GET_CLASS (property);
- return klass->parse_value (property, parser, base);
+ return klass->parse_value (property, parser);
}
/**