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/select/properties/content.c | 4 ++-- src/select/properties/cursor.c | 2 +- src/select/properties/font_family.c | 2 +- src/select/properties/helpers.c | 4 ++-- src/select/properties/play_during.c | 2 +- src/select/properties/quotes.c | 4 ++-- src/select/properties/voice_family.c | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) (limited to 'src/select/properties') 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: -- cgit v1.2.3