summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqbitarray.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-31 13:38:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-31 13:43:03 +0900
commit6e4a70d41a2636ce99a1da7b6827ac5685ed3186 (patch)
treeb029ebf1d5be6d1ac0ee361e7bfb68a7dbed0eec /doc/man/man3/tqbitarray.3qt
parent81ade129093a279e6537db25710583fd2bba9427 (diff)
downloadtqt-6e4a70d41a2636ce99a1da7b6827ac5685ed3186.tar.gz
tqt-6e4a70d41a2636ce99a1da7b6827ac5685ed3186.zip
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked and manually edited from commit 6dd781c483eea56f51ae0eff47d857976b5d0f0d)
Diffstat (limited to 'doc/man/man3/tqbitarray.3qt')
-rw-r--r--doc/man/man3/tqbitarray.3qt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqbitarray.3qt b/doc/man/man3/tqbitarray.3qt
index 8276c7d9b..432a427fa 100644
--- a/doc/man/man3/tqbitarray.3qt
+++ b/doc/man/man3/tqbitarray.3qt
@@ -171,11 +171,11 @@ See also copy().
.PP
Reimplemented from QMemArray.
.SH "bool QBitArray::fill ( bool v, int size = -1 )"
-Fills the bit array with \fIv\fR (1's if \fIv\fR is TRUE, or 0's if \fIv\fR is FALSE).
+Fills the bit array with \fIv\fR (1's if \fIv\fR is true, or 0's if \fIv\fR is false).
.PP
fill() resizes the bit array to \fIsize\fR bits if \fIsize\fR is nonnegative.
.PP
-Returns FALSE if a nonnegative \fIsize\fR was specified and the bit array could not be resized; otherwise returns TRUE.
+Returns false if a nonnegative \fIsize\fR was specified and the bit array could not be resized; otherwise returns true.
.PP
See also resize().
.SH "QBitArray & QBitArray::operator&= ( const QBitArray & a )"
@@ -275,7 +275,7 @@ Example:
.br
.fi
.SH "bool QBitArray::resize ( uint size )"
-Resizes the bit array to \fIsize\fR bits and returns TRUE if the bit array could be resized; otherwise returns FALSE. The array becomes a null array if \fIsize\fR == 0.
+Resizes the bit array to \fIsize\fR bits and returns true if the bit array could be resized; otherwise returns false. The array becomes a null array if \fIsize\fR == 0.
.PP
If the array is expanded, the new bits are set to 0.
.PP
@@ -309,7 +309,7 @@ Returns the bit array's size (number of bits).
.PP
See also resize().
.SH "bool QBitArray::testBit ( uint index ) const"
-Returns TRUE if the bit at position \fIindex\fR is set, i.e. is 1; otherwise returns FALSE.
+Returns true if the bit at position \fIindex\fR is set, i.e. is 1; otherwise returns false.
.PP
See also setBit() and clearBit().
.SH "bool QBitArray::toggleBit ( uint index )"