css node declaration: Avoid optional out parameters

Always pass a pos to find_class, and avoid the if.
This commit is contained in:
Matthias Clasen
2015-09-10 22:04:31 -04:00
parent 29505af07f
commit 20c49b8837

View File

@ -231,8 +231,7 @@ find_class (const GtkCssNodeDeclaration *decl,
GQuark *classes;
guint pos;
if (position)
*position = 0;
*position = 0;
if (decl->n_classes == 0)
return FALSE;
@ -264,8 +263,7 @@ find_class (const GtkCssNodeDeclaration *decl,
}
while (min <= max);
if (position)
*position = pos;
*position = pos;
return found;
}
@ -326,6 +324,7 @@ gboolean
gtk_css_node_declaration_has_class (const GtkCssNodeDeclaration *decl,
GQuark class_quark)
{
guint pos;
GQuark *classes = get_classes (decl);
switch (decl->n_classes)
@ -346,7 +345,7 @@ gtk_css_node_declaration_has_class (const GtkCssNodeDeclaration *decl,
return FALSE;
default:
return find_class (decl, class_quark, NULL);
return find_class (decl, class_quark, &pos);
}
}