cssprovider: Pass NULL unconditionally

We know that parent is NULL at this point.

Also, fix indentation.
This commit is contained in:
Krzesimir Nowak 2015-11-17 10:00:23 +01:00 committed by Benjamin Otte
parent e933233479
commit f6ce2cd975

View File

@ -2801,10 +2801,10 @@ gtk_css_provider_load_internal (GtkCssProvider *css_provider,
if (parent == NULL)
{
scanner = gtk_css_scanner_new (css_provider,
parent,
parent ? parent->section : NULL,
file,
"");
NULL,
NULL,
file,
"");
gtk_css_scanner_push_section (scanner, GTK_CSS_SECTION_DOCUMENT);
}