summaryrefslogtreecommitdiff
path: root/src/select/properties
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/select/properties
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/select/properties')
-rw-r--r--src/select/properties/content.c4
-rw-r--r--src/select/properties/cursor.c2
-rw-r--r--src/select/properties/font_family.c2
-rw-r--r--src/select/properties/helpers.c4
-rw-r--r--src/select/properties/play_during.c2
-rw-r--r--src/select/properties/quotes.c4
-rw-r--r--src/select/properties/voice_family.c2
7 files changed, 10 insertions, 10 deletions
diff --git a/src/select/properties/content.c b/src/select/properties/content.c
index 5e38d49..1d033f2 100644
--- a/src/select/properties/content.c
+++ b/src/select/properties/content.c
@@ -35,7 +35,7 @@ css_error css__cascade_content(uint32_t opv, css_style *style,
lwc_string *he;
css_computed_content_item *temp;
- css_stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &he);
+ css__stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &he);
temp = state->computed->alloc(content,
(n_contents + 1) *
@@ -66,7 +66,7 @@ css_error css__cascade_content(uint32_t opv, css_style *style,
advance_bytecode(style, sizeof(css_code_t));
- css_stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &sep);
+ css__stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &sep);
advance_bytecode(style, sizeof(css_code_t));
content[n_contents].type =
diff --git a/src/select/properties/cursor.c b/src/select/properties/cursor.c
index 42c3753..d4785b1 100644
--- a/src/select/properties/cursor.c
+++ b/src/select/properties/cursor.c
@@ -28,7 +28,7 @@ css_error css__cascade_cursor(uint32_t opv, css_style *style,
lwc_string *uri;
lwc_string **temp;
- css_stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &uri);
+ css__stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &uri);
advance_bytecode(style, sizeof(css_code_t));
temp = state->computed->alloc(uris,
diff --git a/src/select/properties/font_family.c b/src/select/properties/font_family.c
index f712cdb..8ad36e4 100644
--- a/src/select/properties/font_family.c
+++ b/src/select/properties/font_family.c
@@ -31,7 +31,7 @@ css_error css__cascade_font_family(uint32_t opv, css_style *style,
switch (v) {
case FONT_FAMILY_STRING:
case FONT_FAMILY_IDENT_LIST:
- css_stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &font);
+ css__stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &font);
advance_bytecode(style, sizeof(css_code_t));
break;
case FONT_FAMILY_SERIF:
diff --git a/src/select/properties/helpers.c b/src/select/properties/helpers.c
index 31ef2a7..9635dd8 100644
--- a/src/select/properties/helpers.c
+++ b/src/select/properties/helpers.c
@@ -93,7 +93,7 @@ css_error css__cascade_uri_none(uint32_t opv, css_style *style,
break;
case BACKGROUND_IMAGE_URI:
value = CSS_BACKGROUND_IMAGE_IMAGE;
- css_stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &uri);
+ css__stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &uri);
advance_bytecode(style, sizeof(css_code_t));
break;
}
@@ -402,7 +402,7 @@ css_error css__cascade_counter_increment_reset(uint32_t opv, css_style *style,
lwc_string *name;
css_fixed val = 0;
- css_stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &name);
+ css__stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &name);
advance_bytecode(style, sizeof(css_code_t));
val = *((css_fixed *) style->bytecode);
diff --git a/src/select/properties/play_during.c b/src/select/properties/play_during.c
index ab01b6a..cb1de3c 100644
--- a/src/select/properties/play_during.c
+++ b/src/select/properties/play_during.c
@@ -25,7 +25,7 @@ css_error css__cascade_play_during(uint32_t opv, css_style *style,
case PLAY_DURING_URI:
value = 0;
- css_stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &uri);
+ css__stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &uri);
advance_bytecode(style, sizeof(css_code_t));
break;
case PLAY_DURING_AUTO:
diff --git a/src/select/properties/quotes.c b/src/select/properties/quotes.c
index 5db2184..7671c1d 100644
--- a/src/select/properties/quotes.c
+++ b/src/select/properties/quotes.c
@@ -30,10 +30,10 @@ css_error css__cascade_quotes(uint32_t opv, css_style *style,
lwc_string *open, *close;
lwc_string **temp;
- css_stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &open);
+ css__stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &open);
advance_bytecode(style, sizeof(css_code_t));
- css_stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &close);
+ css__stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &close);
advance_bytecode(style, sizeof(css_code_t));
temp = state->computed->alloc(quotes,
diff --git a/src/select/properties/voice_family.c b/src/select/properties/voice_family.c
index dfff826..e61d2c6 100644
--- a/src/select/properties/voice_family.c
+++ b/src/select/properties/voice_family.c
@@ -31,7 +31,7 @@ css_error css__cascade_voice_family(uint32_t opv, css_style *style,
switch (v) {
case VOICE_FAMILY_STRING:
case VOICE_FAMILY_IDENT_LIST:
- css_stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &voice);
+ css__stylesheet_string_get(style->sheet, *((css_code_t *) style->bytecode), &voice);
advance_bytecode(style, sizeof(css_code_t));
break;
case VOICE_FAMILY_MALE: