summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqbitarray.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
commitb87533f9904c10f24d6b2e8177c00944e3efe15b (patch)
treec1106a381c851b51e86004698457aef1211b77be /doc/html/ntqbitarray.html
parent894037c3e68e1573a34183d936171f8cda5085f3 (diff)
downloadtqt-b87533f9904c10f24d6b2e8177c00944e3efe15b.tar.gz
tqt-b87533f9904c10f24d6b2e8177c00944e3efe15b.zip
Replace TRUE/FALSE with boolean values true/false - part 4
Manually cherry-picked from commit 4d495175 Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqbitarray.html')
-rw-r--r--doc/html/ntqbitarray.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/ntqbitarray.html b/doc/html/ntqbitarray.html
index d4ecbf4af..f2cb696a1 100644
--- a/doc/html/ntqbitarray.html
+++ b/doc/html/ntqbitarray.html
@@ -155,12 +155,12 @@ if there is only a single reference.
<p>Reimplemented from <a href="ntqmemarray.html#detach">TQMemArray</a>.
<h3 class=fn>bool <a name="fill"></a>TQBitArray::fill ( bool&nbsp;v, int&nbsp;size = -1 )
</h3>
-Fills the bit array with <em>v</em> (1's if <em>v</em> is TRUE, or 0's if <em>v</em>
-is FALSE).
+Fills the bit array with <em>v</em> (1's if <em>v</em> is true, or 0's if <em>v</em>
+is false).
<p> <a href="#fill">fill</a>() resizes the bit array to <em>size</em> bits if <em>size</em> is
nonnegative.
-<p> Returns FALSE if a nonnegative <em>size</em> was specified and the bit
-array could not be resized; otherwise returns TRUE.
+<p> Returns false if a nonnegative <em>size</em> was specified and the bit
+array could not be resized; otherwise returns true.
<p> <p>See also <a href="#resize">resize</a>().
<h3 class=fn><a href="ntqbitarray.html">TQBitArray</a>&nbsp;&amp; <a name="operator-and-eq"></a>TQBitArray::operator&amp;= ( const&nbsp;<a href="ntqbitarray.html">TQBitArray</a>&nbsp;&amp;&nbsp;a )
@@ -252,8 +252,8 @@ Returns a bit array that contains the inverted bits of this bit array.
<h3 class=fn>bool <a name="resize"></a>TQBitArray::resize ( uint&nbsp;size )
</h3>
-Resizes the bit array to <em>size</em> bits and returns TRUE if the bit
-array could be resized; otherwise returns FALSE. The array becomes
+Resizes the bit array to <em>size</em> bits and returns true if the bit
+array could be resized; otherwise returns false. The array becomes
a null array if <em>size</em> == 0.
<p> If the array is expanded, the new bits are set to 0.
<p> <p>See also <a href="#size">size</a>().
@@ -286,8 +286,8 @@ This is an overloaded member function, provided for convenience. It behaves esse
<h3 class=fn>bool <a name="testBit"></a>TQBitArray::testBit ( uint&nbsp;index ) const
</h3>
-Returns TRUE if the bit at position <em>index</em> is set, i.e. is 1;
-otherwise returns FALSE.
+Returns true if the bit at position <em>index</em> is set, i.e. is 1;
+otherwise returns false.
<p> <p>See also <a href="#setBit">setBit</a>() and <a href="#clearBit">clearBit</a>().
<h3 class=fn>bool <a name="toggleBit"></a>TQBitArray::toggleBit ( uint&nbsp;index )