mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 09:49:04 +00:00
Changed: Replaced strlwr by toLower
This commit is contained in:
parent
fdd325166f
commit
f82da9c5e0
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ namespace NLGUI
|
|||
}
|
||||
|
||||
prop = (char*) xmlGetProp( node, (xmlChar*)"onchange" );
|
||||
if (prop) _AHOnChange = NLMISC::toLower(prop);
|
||||
if (prop) _AHOnChange = NLMISC::toLower((const char*)prop);
|
||||
prop = (char*) xmlGetProp( node, (xmlChar*)"onchange_params" );
|
||||
if (prop) _AHOnChangeParams = string((const char*)prop);
|
||||
|
||||
|
|
Loading…
Reference in a new issue