mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
CHANGED: #1471 CInterfaceElement::convertBool is now implemented with NLMISC::fromString, and can convert both 0/1 and false/true style strings to boolean.
This commit is contained in:
parent
5076c5ccdf
commit
40abb664c9
1 changed files with 5 additions and 3 deletions
|
@ -997,9 +997,11 @@ namespace NLGUI
|
|||
// ------------------------------------------------------------------------------------------------
|
||||
bool CInterfaceElement::convertBool (const char *ptr)
|
||||
{
|
||||
string str= ptr;
|
||||
NLMISC::strlwr(str);
|
||||
return str=="true"?true:false;
|
||||
std::string str = ptr;
|
||||
NLMISC::strlwr( str );
|
||||
bool b = false;
|
||||
fromString( str, b );
|
||||
return b;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue