summaryrefslogtreecommitdiff
path: root/src/select/properties/max_width.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/select/properties/max_width.c')
-rw-r--r--src/select/properties/max_width.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/select/properties/max_width.c b/src/select/properties/max_width.c
index 916288c..f9ccc03 100644
--- a/src/select/properties/max_width.c
+++ b/src/select/properties/max_width.c
@@ -14,25 +14,25 @@
#include "select/properties/properties.h"
#include "select/properties/helpers.h"
-css_error cascade_max_width(uint32_t opv, css_style *style,
+css_error css__cascade_max_width(uint32_t opv, css_style *style,
css_select_state *state)
{
- return cascade_length_none(opv, style, state, set_max_width);;
+ return css__cascade_length_none(opv, style, state, set_max_width);;
}
-css_error set_max_width_from_hint(const css_hint *hint,
+css_error css__set_max_width_from_hint(const css_hint *hint,
css_computed_style *style)
{
return set_max_width(style, hint->status,
hint->data.length.value, hint->data.length.unit);
}
-css_error initial_max_width(css_select_state *state)
+css_error css__initial_max_width(css_select_state *state)
{
return set_max_width(state->computed, CSS_MAX_WIDTH_NONE, 0, CSS_UNIT_PX);
}
-css_error compose_max_width(const css_computed_style *parent,
+css_error css__compose_max_width(const css_computed_style *parent,
const css_computed_style *child,
css_computed_style *result)
{