summaryrefslogtreecommitdiff
path: root/src/parse/language.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/language.c')
-rw-r--r--src/parse/language.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/language.c b/src/parse/language.c
index f8df2f1..ca21996 100644
--- a/src/parse/language.c
+++ b/src/parse/language.c
@@ -1288,7 +1288,7 @@ css_error parseProperty(css_language *c, const css_token *property,
}
/* Determine if this declaration is important or not */
- error = parse_important(c, vector, ctx, &flags);
+ error = css__parse_important(c, vector, ctx, &flags);
if (error != CSS_OK) {
css_stylesheet_style_destroy(style);
return error;
@@ -1305,7 +1305,7 @@ css_error parseProperty(css_language *c, const css_token *property,
/* If it's important, then mark the style appropriately */
if (flags != 0)
- make_style_important(style);
+ css__make_style_important(style);
/* Append style to rule */
error = css_stylesheet_rule_append_style(c->sheet, rule, style);