summaryrefslogtreecommitdiff
path: root/src/select/computed.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/select/computed.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/select/computed.c')
-rw-r--r--src/select/computed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select/computed.c b/src/select/computed.c
index 16c6b9f..5479d2f 100644
--- a/src/select/computed.c
+++ b/src/select/computed.c
@@ -306,7 +306,7 @@ css_error css_computed_style_compose(const css_computed_style *parent,
}
/* Finally, compute absolute values for everything */
- return compute_absolute_values(parent, result, compute_font_size, pw);
+ return css__compute_absolute_values(parent, result, compute_font_size, pw);
}
/******************************************************************************
@@ -322,7 +322,7 @@ css_error css_computed_style_compose(const css_computed_style *parent,
* \param pw Private word for callback
* \return CSS_OK on success.
*/
-css_error compute_absolute_values(const css_computed_style *parent,
+css_error css__compute_absolute_values(const css_computed_style *parent,
css_computed_style *style,
css_error (*compute_font_size)(void *pw,
const css_hint *parent, css_hint *size),