summaryrefslogtreecommitdiff
path: root/indra/llui/lltextvalidate.cpp
diff options
context:
space:
mode:
authorAnsariel <ansariel.hiller@phoenixviewer.com>2024-02-20 23:46:23 +0100
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-02-21 03:00:25 +0200
commita5261a5fa8fad810ecb5c260d92c3e771822bf58 (patch)
treed9e9cda2137f01538f7ac98ce5e8dfa10980eaac /indra/llui/lltextvalidate.cpp
parent8c16ec2b53153a10f40181e0e8108d24331451d4 (diff)
Convert BOOL to bool in llui
Diffstat (limited to 'indra/llui/lltextvalidate.cpp')
-rw-r--r--indra/llui/lltextvalidate.cpp62
1 files changed, 31 insertions, 31 deletions
diff --git a/indra/llui/lltextvalidate.cpp b/indra/llui/lltextvalidate.cpp
index bfe0a5bb5d..bd3cfbacde 100644
--- a/indra/llui/lltextvalidate.cpp
+++ b/indra/llui/lltextvalidate.cpp
@@ -55,7 +55,7 @@ namespace LLTextValidate
{
LLLocale locale(LLLocale::USER_LOCALE);
- bool success = TRUE;
+ bool success = true;
LLWString trimmed = str;
LLWStringUtil::trim(trimmed);
S32 len = trimmed.length();
@@ -76,7 +76,7 @@ namespace LLTextValidate
{
if( (decimal_point != trimmed[i] ) && !LLStringOps::isDigit( trimmed[i] ) )
{
- success = FALSE;
+ success = false;
break;
}
}
@@ -93,7 +93,7 @@ namespace LLTextValidate
{
LLLocale locale(LLLocale::USER_LOCALE);
- bool success = TRUE;
+ bool success = true;
LLWString trimmed = str;
LLWStringUtil::trim(trimmed);
S32 len = trimmed.length();
@@ -111,7 +111,7 @@ namespace LLTextValidate
{
if( !LLStringOps::isDigit( trimmed[i] ) )
{
- success = FALSE;
+ success = false;
break;
}
}
@@ -127,19 +127,19 @@ namespace LLTextValidate
LLWString trimmed = str;
LLWStringUtil::trim(trimmed);
S32 len = trimmed.length();
- bool success = TRUE;
+ bool success = true;
if(0 < len)
{
if(('-' == trimmed[0]) || ('0' == trimmed[0]))
{
- success = FALSE;
+ success = false;
}
S32 i = 0;
while(success && (i < len))
{
if(!LLStringOps::isDigit(trimmed[i++]))
{
- success = FALSE;
+ success = false;
}
}
}
@@ -148,7 +148,7 @@ namespace LLTextValidate
S32 val = strtol(wstring_to_utf8str(trimmed).c_str(), NULL, 10);
if (val <= 0)
{
- success = FALSE;
+ success = false;
}
}
return success;
@@ -161,19 +161,19 @@ namespace LLTextValidate
LLWString trimmed = str;
LLWStringUtil::trim(trimmed);
S32 len = trimmed.length();
- bool success = TRUE;
+ bool success = true;
if(0 < len)
{
if('-' == trimmed[0])
{
- success = FALSE;
+ success = false;
}
S32 i = 0;
while(success && (i < len))
{
if(!LLStringOps::isDigit(trimmed[i++]))
{
- success = FALSE;
+ success = false;
}
}
}
@@ -182,7 +182,7 @@ namespace LLTextValidate
S32 val = strtol(wstring_to_utf8str(trimmed).c_str(), NULL, 10);
if (val < 0)
{
- success = FALSE;
+ success = false;
}
}
return success;
@@ -194,19 +194,19 @@ namespace LLTextValidate
LLWString test_str = str;
S32 len = test_str.length();
- bool success = TRUE;
+ bool success = true;
if(0 < len)
{
if('-' == test_str[0])
{
- success = FALSE;
+ success = false;
}
S32 i = 0;
while(success && (i < len))
{
if(!LLStringOps::isDigit(test_str[i]) || LLStringOps::isSpace(test_str[i++]))
{
- success = FALSE;
+ success = false;
}
}
}
@@ -215,7 +215,7 @@ namespace LLTextValidate
S32 val = strtol(wstring_to_utf8str(test_str).c_str(), NULL, 10);
if (val < 0)
{
- success = FALSE;
+ success = false;
}
}
return success;
@@ -225,14 +225,14 @@ namespace LLTextValidate
{
LLLocale locale(LLLocale::USER_LOCALE);
- bool rv = TRUE;
+ bool rv = true;
S32 len = str.length();
if(len == 0) return rv;
while(len--)
{
if( !LLStringOps::isAlnum((char)str[len]) )
{
- rv = FALSE;
+ rv = false;
break;
}
}
@@ -243,14 +243,14 @@ namespace LLTextValidate
{
LLLocale locale(LLLocale::USER_LOCALE);
- bool rv = TRUE;
+ bool rv = true;
S32 len = str.length();
if(len == 0) return rv;
while(len--)
{
if(!(LLStringOps::isAlnum((char)str[len]) || (' ' == str[len])))
{
- rv = FALSE;
+ rv = false;
break;
}
}
@@ -262,7 +262,7 @@ namespace LLTextValidate
// inventory item names, parcel names, object names, etc.
bool validateASCIIPrintableNoPipe(const LLWString &str)
{
- bool rv = TRUE;
+ bool rv = true;
S32 len = str.length();
if(len == 0) return rv;
while(len--)
@@ -272,14 +272,14 @@ namespace LLTextValidate
|| wc > 0x7f
|| wc == '|')
{
- rv = FALSE;
+ rv = false;
break;
}
if(!(wc == ' '
|| LLStringOps::isAlnum((char)wc)
|| LLStringOps::isPunct((char)wc) ) )
{
- rv = FALSE;
+ rv = false;
break;
}
}
@@ -290,7 +290,7 @@ namespace LLTextValidate
// Used for avatar names
bool validateASCIIPrintableNoSpace(const LLWString &str)
{
- bool rv = TRUE;
+ bool rv = true;
S32 len = str.length();
if(len == 0) return rv;
while(len--)
@@ -300,13 +300,13 @@ namespace LLTextValidate
|| wc > 0x7f
|| LLStringOps::isSpace(wc))
{
- rv = FALSE;
+ rv = false;
break;
}
if( !(LLStringOps::isAlnum((char)str[len]) ||
LLStringOps::isPunct((char)str[len]) ) )
{
- rv = FALSE;
+ rv = false;
break;
}
}
@@ -315,13 +315,13 @@ namespace LLTextValidate
bool validateASCII(const LLWString &str)
{
- bool rv = TRUE;
+ bool rv = true;
S32 len = str.length();
while(len--)
{
if (str[len] < 0x20 || str[len] > 0x7f)
{
- rv = FALSE;
+ rv = false;
break;
}
}
@@ -332,7 +332,7 @@ namespace LLTextValidate
{
if (LLStringOps::isSpace(str[0]))
{
- return FALSE;
+ return false;
}
return validateASCII(str);
}
@@ -341,13 +341,13 @@ namespace LLTextValidate
// Example is landmark description in Places SP.
bool validateASCIIWithNewLine(const LLWString &str)
{
- bool rv = TRUE;
+ bool rv = true;
S32 len = str.length();
while(len--)
{
if ((str[len] < 0x20 && str[len] != 0xA) || str[len] > 0x7f)
{
- rv = FALSE;
+ rv = false;
break;
}
}