From 9a026637586cc90ce3418e945210c90313434306 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Wed, 26 Jan 2011 12:49:58 +0000 Subject: Rename all css_[^_] internal symbols to css__ so that they're nicely namespaced svn path=/trunk/libcss/; revision=11492 --- src/parse/properties/text_decoration.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/parse/properties/text_decoration.c') diff --git a/src/parse/properties/text_decoration.c b/src/parse/properties/text_decoration.c index 2d893f4..9bfdec2 100644 --- a/src/parse/properties/text_decoration.c +++ b/src/parse/properties/text_decoration.c @@ -51,7 +51,7 @@ css_error css__parse_text_decoration(css_language *c, } else if (lwc_string_caseless_isequal(token->idata, c->strings[NONE], &match) == lwc_error_ok && match) { - error = css_stylesheet_style_appendOPV(result, + error = css__stylesheet_style_appendOPV(result, CSS_PROP_TEXT_DECORATION, 0, TEXT_DECORATION_NONE); } else { uint16_t value = 0; @@ -104,7 +104,7 @@ css_error css__parse_text_decoration(css_language *c, break; token = parserutils_vector_iterate(vector, ctx); } - error = css_stylesheet_style_appendOPV(result, + error = css__stylesheet_style_appendOPV(result, CSS_PROP_TEXT_DECORATION, 0, value); } -- cgit v1.2.3