cssimage: No need to pass base file anymore

The file is now part of the GtkCssParser
This commit is contained in:
Benjamin Otte
2012-04-18 21:44:08 +02:00
parent e1317268a3
commit c9f01ffb43
9 changed files with 14 additions and 23 deletions

View File

@ -281,7 +281,7 @@ parse_border_image (GtkCssShorthandProperty *shorthand,
image = NULL;
else
{
image = _gtk_css_image_new_parse (parser, base);
image = _gtk_css_image_new_parse (parser);
if (image == NULL)
return FALSE;
}
@ -483,7 +483,7 @@ parse_background (GtkCssShorthandProperty *shorthand,
image = NULL;
else
{
image = _gtk_css_image_new_parse (parser, base);
image = _gtk_css_image_new_parse (parser);
if (image == NULL)
return FALSE;
}