summaryrefslogtreecommitdiffstats
path: root/tools/linguist/lupdate/numberh.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-30 14:27:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-06-25 16:43:08 +0900
commit35ced32e331ee29fda1642616c803637952f5b22 (patch)
treeda44726777f814e19c7ef1e43854f6a1693dd6fb /tools/linguist/lupdate/numberh.cpp
parent7dd4848d61e4c52091d6c644356c84c67536bde2 (diff)
downloadtqt-35ced32e.tar.gz
tqt-35ced32e.zip
Replace TRUE/FALSE with boolean values true/false - part 1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a7f1e6e2552d9cdbb3d76bff089db522248b9a24)
Diffstat (limited to 'tools/linguist/lupdate/numberh.cpp')
-rw-r--r--tools/linguist/lupdate/numberh.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/linguist/lupdate/numberh.cpp b/tools/linguist/lupdate/numberh.cpp
index 29d6fd2f9..4ff8d09eb 100644
--- a/tools/linguist/lupdate/numberh.cpp
+++ b/tools/linguist/lupdate/numberh.cpp
@@ -73,14 +73,14 @@ static TQCString zeroKey( const char *key )
char *z = zeroed.data();
int i = 0, j = 0;
int len;
- bool metSomething = FALSE;
+ bool metSomething = false;
while ( key[i] != '\0' ) {
len = numberLength( key + i );
if ( len > 0 ) {
i += len;
z[j++] = '0';
- metSomething = TRUE;
+ metSomething = true;
} else {
z[j++] = key[i++];
}
@@ -125,7 +125,7 @@ static TQString translationAttempt( const TQString& oldTranslation,
newNumbers.append( TQCString(newSource + j, n + 1) );
i += m;
j += n;
- met[k] = FALSE;
+ met[k] = false;
matchedYet[k] = 0;
k++;
}
@@ -168,7 +168,7 @@ static TQString translationAttempt( const TQString& oldTranslation,
if ( best != p ) {
attempt.truncate( attempt.length() - matchedYet[best] );
attempt += newNumbers[best];
- met[best] = TRUE;
+ met[best] = true;
for ( k = 0; k < p; k++ )
matchedYet[k] = 0;
break;