summaryrefslogtreecommitdiff
path: root/src/select/select.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2015-11-02 22:21:53 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2016-11-19 14:30:07 +0000
commit03824fd772e44b4cd281dd893df07d991cac9e41 (patch)
tree2d2af773c3bb83db3e8897e80cee558325a56b79 /src/select/select.c
parent6dc495bb9936c8d1359fd6c1a1728962730cde08 (diff)
downloadlibcss-03824fd772e44b4cd281dd893df07d991cac9e41.tar.gz
libcss-03824fd772e44b4cd281dd893df07d991cac9e41.tar.bz2
Remove redundant API surface.
Diffstat (limited to 'src/select/select.c')
-rw-r--r--src/select/select.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/select/select.c b/src/select/select.c
index a1ec746..f2cb6d5 100644
--- a/src/select/select.c
+++ b/src/select/select.c
@@ -429,11 +429,11 @@ static css_error css__select_ctx_create_default_style(css_select_ctx *ctx,
css_error error;
/* Need to construct the default style */
- error = css_computed_style_create(&style);
+ error = css__computed_style_create(&style);
if (error != CSS_OK)
return error;
- error = css_computed_style_initialise(style, handler, pw);
+ error = css__computed_style_initialise(style, handler, pw);
if (error != CSS_OK) {
css_computed_style_destroy(style);
return error;
@@ -543,7 +543,7 @@ css_error css_select_style(css_select_ctx *ctx, void *node,
state.results->styles[i] = NULL;
/* Base element style is guaranteed to exist */
- error = css_computed_style_create(
+ error = css__computed_style_create(
&state.results->styles[CSS_PSEUDO_ELEMENT_NONE]);
if (error != CSS_OK) {
free(state.results);
@@ -626,7 +626,7 @@ css_error css_select_style(css_select_ctx *ctx, void *node,
struct css_computed_style *computed_style =
state.results->styles[CSS_PSEUDO_ELEMENT_NONE];
if (computed_style == NULL) {
- error = css_computed_style_create(&computed_style);
+ error = css__computed_style_create(&computed_style);
if (error != CSS_OK)
goto cleanup;
}
@@ -1799,7 +1799,7 @@ css_error match_selector_chain(css_select_ctx *ctx,
/* Ensure that the appropriate computed style exists */
if (state->results->styles[pseudo] == NULL) {
- error = css_computed_style_create(
+ error = css__computed_style_create(
&state->results->styles[pseudo]);
if (error != CSS_OK)
return error;