summaryrefslogtreecommitdiff
path: root/src/parse/properties
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-12-29 17:52:53 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-12-29 17:52:53 +0000
commit568cc93155007a6a75b17d972d864f1cfd05a7d1 (patch)
tree11ca60ee7785254259d0866455221b55179353e8 /src/parse/properties
parent2a1fe7f41d1f39bf18c2df35dd7e697207c3433d (diff)
downloadlibcss-568cc93155007a6a75b17d972d864f1cfd05a7d1.tar.gz
libcss-568cc93155007a6a75b17d972d864f1cfd05a7d1.tar.bz2
Hack around platform headers doing the likes of typedef float FLOAT;
svn path=/trunk/libcss/; revision=11138
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(