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/elevation.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/parse/properties/elevation.c') diff --git a/src/parse/properties/elevation.c b/src/parse/properties/elevation.c index 8c5e48e..f3a48a4 100644 --- a/src/parse/properties/elevation.c +++ b/src/parse/properties/elevation.c @@ -117,14 +117,14 @@ css_error css__parse_elevation(css_language *c, value = ELEVATION_ANGLE; } - error = css_stylesheet_style_appendOPV(result, CSS_PROP_ELEVATION, flags, value); + error = css__stylesheet_style_appendOPV(result, CSS_PROP_ELEVATION, flags, value); if (error != CSS_OK) { *ctx = orig_ctx; return error; } if (((flags & FLAG_INHERIT) == false) && (value == ELEVATION_ANGLE)) { - error = css_stylesheet_style_vappend(result, 2, length, unit); + error = css__stylesheet_style_vappend(result, 2, length, unit); if (error != CSS_OK) { *ctx = orig_ctx; return error; -- cgit v1.2.3