From 33b37afeab6180e4fdc3c97f7f6cc713686ac6a9 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Thu, 20 Jan 2011 11:59:46 +0000 Subject: Ensure there are zero global symbols without css_ or css__ in front of them. This helps prevent confusion if someone else wants a function called parse_background or similar svn path=/trunk/libcss/; revision=11416 --- src/parse/language.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/parse/language.c') 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); -- cgit v1.2.3