summaryrefslogtreecommitdiff
path: root/src/parse/properties/cursor.c
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-26 12:49:58 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-26 12:49:58 +0000
commit9a026637586cc90ce3418e945210c90313434306 (patch)
tree5c06aff26935112320620fdd1fe45f6a447763c5 /src/parse/properties/cursor.c
parentff6f6cf29dbe18a2541ba73c2542253c5ffb0abc (diff)
downloadlibcss-9a026637586cc90ce3418e945210c90313434306.tar.gz
libcss-9a026637586cc90ce3418e945210c90313434306.tar.bz2
Rename all css_[^_] internal symbols to css__ so that they're nicely namespaced
svn path=/trunk/libcss/; revision=11492
Diffstat (limited to 'src/parse/properties/cursor.c')
-rw-r--r--src/parse/properties/cursor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parse/properties/cursor.c b/src/parse/properties/cursor.c
index 07e2d8a..6b9eadf 100644
--- a/src/parse/properties/cursor.c
+++ b/src/parse/properties/cursor.c
@@ -59,7 +59,7 @@ css_error css__parse_cursor(css_language *c,
/* Macro to output the value marker, awkward because we need to check
* first to determine how the value is constructed.
*/
-#define CSS_APPEND(CSSVAL) css_stylesheet_style_append(result, first?buildOPV(CSS_PROP_CURSOR, 0, CSSVAL):CSSVAL)
+#define CSS_APPEND(CSSVAL) css__stylesheet_style_append(result, first?buildOPV(CSS_PROP_CURSOR, 0, CSSVAL):CSSVAL)
/* URI* */
@@ -75,7 +75,7 @@ css_error css__parse_cursor(css_language *c,
return error;
}
- error = css_stylesheet_string_add(c->sheet,
+ error = css__stylesheet_string_add(c->sheet,
uri,
&uri_snumber);
if (error != CSS_OK) {
@@ -89,7 +89,7 @@ css_error css__parse_cursor(css_language *c,
return error;
}
- error = css_stylesheet_style_append(result, uri_snumber);
+ error = css__stylesheet_style_append(result, uri_snumber);
if (error != CSS_OK) {
*ctx = orig_ctx;
return error;