summaryrefslogtreecommitdiffstats
path: root/doc/html/tqbitarray.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-16 17:42:59 +0900
commit4d495175043c399fdca6e1bb4c74ef176fc76fb4 (patch)
tree119a6d76d177dade68b3744cb660fe26b33c9864 /doc/html/tqbitarray.html
parentcf2c8613706a3685266058db00c0e9f632c5bd24 (diff)
downloadtqt-rename/true-false-4.tar.gz
tqt-rename/true-false-4.zip
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqbitarray.html')
-rw-r--r--doc/html/tqbitarray.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/tqbitarray.html b/doc/html/tqbitarray.html
index 03492f232..5e250cf84 100644
--- a/doc/html/tqbitarray.html
+++ b/doc/html/tqbitarray.html
@@ -154,12 +154,12 @@ if there is only a single reference.
<p>Reimplemented from <a href="tqmemarray.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="tqbitarray.html">TQBitArray</a>&nbsp;&amp; <a name="operator-and-eq"></a>TQBitArray::operator&amp;= ( const&nbsp;<a href="tqbitarray.html">TQBitArray</a>&nbsp;&amp;&nbsp;a )
@@ -251,8 +251,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>().
@@ -285,8 +285,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 )