summaryrefslogtreecommitdiff
path: root/src/parse/properties/quotes.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/quotes.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/quotes.c')
-rw-r--r--src/parse/properties/quotes.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/parse/properties/quotes.c b/src/parse/properties/quotes.c
index 6d235ab..07d8998 100644
--- a/src/parse/properties/quotes.c
+++ b/src/parse/properties/quotes.c
@@ -54,7 +54,7 @@ css_error css__parse_quotes(css_language *c,
(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_QUOTES, 0, QUOTES_NONE);
} else if (token->type == CSS_TOKEN_STRING) {
bool first = true;
@@ -62,14 +62,14 @@ css_error css__parse_quotes(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_FIRST_APPEND(CSSVAL) css_stylesheet_style_append(result, first?buildOPV(CSS_PROP_QUOTES, 0, CSSVAL):CSSVAL)
+#define CSS_FIRST_APPEND(CSSVAL) css__stylesheet_style_append(result, first?buildOPV(CSS_PROP_QUOTES, 0, CSSVAL):CSSVAL)
/* [ STRING STRING ]+ */
while ((token != NULL) && (token->type == CSS_TOKEN_STRING)) {
uint32_t open_snumber;
uint32_t close_snumber;
- error = css_stylesheet_string_add(c->sheet,
+ error = css__stylesheet_string_add(c->sheet,
lwc_string_ref(token->idata),
&open_snumber);
if (error != CSS_OK)
@@ -84,7 +84,7 @@ css_error css__parse_quotes(css_language *c,
break;
}
- error = css_stylesheet_string_add(c->sheet,
+ error = css__stylesheet_string_add(c->sheet,
lwc_string_ref(token->idata),
&close_snumber);
if (error != CSS_OK)
@@ -96,11 +96,11 @@ css_error css__parse_quotes(css_language *c,
if (error != CSS_OK)
break;
- error = css_stylesheet_style_append(result, open_snumber);
+ error = css__stylesheet_style_append(result, open_snumber);
if (error != CSS_OK)
break;
- error = css_stylesheet_style_append(result, close_snumber);
+ error = css__stylesheet_style_append(result, close_snumber);
if (error != CSS_OK)
break;
@@ -114,7 +114,7 @@ css_error css__parse_quotes(css_language *c,
if (error == CSS_OK) {
/* AddTerminator */
- error = css_stylesheet_style_append(result, QUOTES_NONE);
+ error = css__stylesheet_style_append(result, QUOTES_NONE);
}
} else {
error = CSS_INVALID;