[DEV] remove comment when double conversion requested

This commit is contained in:
Edouard DUPIN 2013-06-26 22:24:27 +02:00
parent 2cac9e69dd
commit d2099c51e9

View File

@ -797,6 +797,8 @@ etk::UString etk::UString::ToUpper(void) const
bool etk::UString::ToBool(void) const bool etk::UString::ToBool(void) const
{ {
if( true == CompareNoCase("true") if( true == CompareNoCase("true")
|| true == CompareNoCase("enable")
|| true == CompareNoCase("yes")
|| *this == "1") { || *this == "1") {
return true; return true;
} }
@ -896,7 +898,7 @@ double etk::UString::ToDouble(void) const
isOdd = true; isOdd = true;
} }
} else { } else {
TK_DEBUG( *this << " curent val " << m_data[iii] << "out=" << ret); TK_VERBOSE( *this << " curent val " << m_data[iii] << "out=" << ret);
if (dotPos == -1) { if (dotPos == -1) {
if (m_data[iii] == '.') { if (m_data[iii] == '.') {
dotPos = 0.1; dotPos = 0.1;
@ -921,7 +923,7 @@ double etk::UString::ToDouble(void) const
if (isOdd == true) { if (isOdd == true) {
ret *= -1.0; ret *= -1.0;
} }
TK_DEBUG( *this << " end =" << ret); TK_VERBOSE( *this << " end =" << ret);
return ret; return ret;
} }