summaryrefslogtreecommitdiff
path: root/src/parse/properties/padding.c
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-20 11:59:46 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-20 11:59:46 +0000
commit33b37afeab6180e4fdc3c97f7f6cc713686ac6a9 (patch)
treefeb641941e4fbd0db11bf70415fee5e3be50a08a /src/parse/properties/padding.c
parenta8537a5405583a4c975b56d95cab8bdd5d406e9f (diff)
downloadlibcss-33b37afeab6180e4fdc3c97f7f6cc713686ac6a9.tar.gz
libcss-33b37afeab6180e4fdc3c97f7f6cc713686ac6a9.tar.bz2
Ensure there are zero global symbols without css_ or css__ in front of them. This helps prevent confusion if someone else wants a function called parse_background or similar
svn path=/trunk/libcss/; revision=11416
Diffstat (limited to 'src/parse/properties/padding.c')
-rw-r--r--src/parse/properties/padding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/properties/padding.c b/src/parse/properties/padding.c
index 263906d..5211e9d 100644
--- a/src/parse/properties/padding.c
+++ b/src/parse/properties/padding.c
@@ -27,7 +27,7 @@
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
-css_error parse_padding(css_language *c,
+css_error css__parse_padding(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result)
{
@@ -73,7 +73,7 @@ css_error parse_padding(css_language *c,
return CSS_INVALID;
}
- error = parse_unit_specifier(c, vector, ctx, UNIT_PX, &side_length[side_count], &side_unit[side_count]);
+ error = css__parse_unit_specifier(c, vector, ctx, UNIT_PX, &side_length[side_count], &side_unit[side_count]);
if (error == CSS_OK) {
if (side_unit[side_count] & UNIT_ANGLE ||
side_unit[side_count] & UNIT_TIME ||