summaryrefslogtreecommitdiff
path: root/src/select/properties/float.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/select/properties/float.c')
-rw-r--r--src/select/properties/float.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/select/properties/float.c b/src/select/properties/float.c
index ff35f82..82df983 100644
--- a/src/select/properties/float.c
+++ b/src/select/properties/float.c
@@ -14,7 +14,7 @@
#include "select/properties/properties.h"
#include "select/properties/helpers.h"
-css_error cascade_float(uint32_t opv, css_style *style,
+css_error css__cascade_float(uint32_t opv, css_style *style,
css_select_state *state)
{
uint16_t value = CSS_FLOAT_INHERIT;
@@ -35,7 +35,7 @@ css_error cascade_float(uint32_t opv, css_style *style,
}
}
- if (outranks_existing(getOpcode(opv), isImportant(opv), state,
+ if (css__outranks_existing(getOpcode(opv), isImportant(opv), state,
isInherit(opv))) {
return set_float(state->computed, value);
}
@@ -43,18 +43,18 @@ css_error cascade_float(uint32_t opv, css_style *style,
return CSS_OK;
}
-css_error set_float_from_hint(const css_hint *hint,
+css_error css__set_float_from_hint(const css_hint *hint,
css_computed_style *style)
{
return set_float(style, hint->status);
}
-css_error initial_float(css_select_state *state)
+css_error css__initial_float(css_select_state *state)
{
return set_float(state->computed, CSS_FLOAT_NONE);
}
-css_error compose_float(const css_computed_style *parent,
+css_error css__compose_float(const css_computed_style *parent,
const css_computed_style *child,
css_computed_style *result)
{