summaryrefslogtreecommitdiff
path: root/src/parse/properties
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/properties')
-rw-r--r--src/parse/properties/border_outline.c2
-rw-r--r--src/parse/properties/positioning.c2
-rw-r--r--src/parse/properties/ui.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/parse/properties/border_outline.c b/src/parse/properties/border_outline.c
index be6cafd..02d85a7 100644
--- a/src/parse/properties/border_outline.c
+++ b/src/parse/properties/border_outline.c
@@ -2071,7 +2071,7 @@ css_error parse_border_side_style(css_language *c,
&match) == lwc_error_ok && match)) {
value = BORDER_STYLE_SOLID;
} else if ((lwc_string_caseless_isequal(
- ident->idata, c->strings[DOUBLE],
+ ident->idata, c->strings[LIBCSS_DOUBLE],
&match) == lwc_error_ok && match)) {
value = BORDER_STYLE_DOUBLE;
} else if ((lwc_string_caseless_isequal(
diff --git a/src/parse/properties/positioning.c b/src/parse/properties/positioning.c
index c4393aa..9e5ac73 100644
--- a/src/parse/properties/positioning.c
+++ b/src/parse/properties/positioning.c
@@ -138,7 +138,7 @@ css_error parse_position(css_language *c,
&match) == lwc_error_ok && match)) {
flags |= FLAG_INHERIT;
} else if ((lwc_string_caseless_isequal(
- ident->idata, c->strings[STATIC],
+ ident->idata, c->strings[LIBCSS_STATIC],
&match) == lwc_error_ok && match)) {
value = POSITION_STATIC;
} else if ((lwc_string_caseless_isequal(
diff --git a/src/parse/properties/ui.c b/src/parse/properties/ui.c
index 2184ac4..725e7b7 100644
--- a/src/parse/properties/ui.c
+++ b/src/parse/properties/ui.c
@@ -177,7 +177,7 @@ css_error parse_cursor(css_language *c,
value = CURSOR_W_RESIZE;
}
} else if ((lwc_string_caseless_isequal(
- token->idata, c->strings[TEXT],
+ token->idata, c->strings[LIBCSS_TEXT],
&match) == lwc_error_ok && match)) {
if (first) {
value = CURSOR_TEXT;
@@ -341,7 +341,7 @@ css_error parse_cursor(css_language *c,
&match) == lwc_error_ok && match)) {
opv = CURSOR_W_RESIZE;
} else if ((lwc_string_caseless_isequal(
- token->idata, c->strings[TEXT],
+ token->idata, c->strings[LIBCSS_TEXT],
&match) == lwc_error_ok && match)) {
opv = CURSOR_TEXT;
} else if ((lwc_string_caseless_isequal(