Changed: Replaced strlwr by toLower
This commit is contained in:
parent
48220f401c
commit
eedaee3da3
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