aboutsummaryrefslogtreecommitdiff
path: root/src/styleengine.cc
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2012-09-20 21:27:09 +0200
committerSebastian Geerken <devnull@localhost>2012-09-20 21:27:09 +0200
commitfd3bd017cca30ec144ba19bb46159ffd952d5467 (patch)
tree4c317eb382923f3dd6933bbd794b275e448753b9 /src/styleengine.cc
parente03f23fca4501d0db0d5e68e92292db0822b55fb (diff)
parent97a315bf349a757927f4a55a6cbe186f20d384af (diff)
Merge again with main repo.
Diffstat (limited to 'src/styleengine.cc')
-rw-r--r--src/styleengine.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/styleengine.cc b/src/styleengine.cc
index ed272269..b7814cde 100644
--- a/src/styleengine.cc
+++ b/src/styleengine.cc
@@ -605,9 +605,9 @@ void StyleEngine::apply (int i, StyleAttrs *attrs, CssPropertyList *props) {
attrs->x_link = p->value.intVal;
break;
case PROPERTY_X_LANG:
- attrs->x_lang[0] = tolower (p->value.strVal[0]);
+ attrs->x_lang[0] = D_ASCII_TOLOWER(p->value.strVal[0]);
if (attrs->x_lang[0])
- attrs->x_lang[1] = tolower (p->value.strVal[1]);
+ attrs->x_lang[1] = D_ASCII_TOLOWER(p->value.strVal[1]);
else
attrs->x_lang[1] = 0;
break;