summaryrefslogtreecommitdiffstats
path: root/doc/html/tqmemarray.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-08-06 11:29:57 +0900
commitdcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch)
treed57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqmemarray.html
parent649c4c61a1f1f479f4532b196f68df476cef2680 (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/tqmemarray.html')
-rw-r--r--doc/html/tqmemarray.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/html/tqmemarray.html b/doc/html/tqmemarray.html
index 6ee45bdb2..1c597ac5b 100644
--- a/doc/html/tqmemarray.html
+++ b/doc/html/tqmemarray.html
@@ -361,8 +361,8 @@ of <a href="tqvaluelist.html">TQValueList</a> and <a href="tqmap.html">TQMap</a>
<p> Fills the array with the value <em>v</em>. If <em>size</em> is specified as
different from -1, then the array will be resized before being
filled.
-<p> Returns TRUE if successful, i.e. if <em>size</em> is -1, or <em>size</em> is
-!= -1 and the memory can be allocated; otherwise returns FALSE.
+<p> Returns true if successful, i.e. if <em>size</em> is -1, or <em>size</em> is
+!= -1 and the memory can be allocated; otherwise returns false.
<p> <p>See also <a href="#resize">resize</a>().
<h3 class=fn>int <a name="find"></a>TQMemArray::find ( const&nbsp;type&nbsp;&amp;&nbsp;v, uint&nbsp;index = 0 ) const
@@ -375,14 +375,14 @@ filled.
<h3 class=fn>bool <a name="isEmpty"></a>TQMemArray::isEmpty () const
</h3>
-<p> Returns TRUE if the array is empty; otherwise returns FALSE.
+<p> Returns true if the array is empty; otherwise returns false.
<p> <a href="#isEmpty">isEmpty</a>() is equivalent to <a href="#isNull">isNull</a>() for TQMemArray (unlike
<a href="tqstring.html">TQString</a>).
<h3 class=fn>bool <a name="isNull"></a>TQMemArray::isNull () const
</h3>
-<p> Returns TRUE if the array is null; otherwise returns FALSE.
+<p> Returns true if the array is null; otherwise returns false.
<p> A null array has <a href="#size">size</a>() == 0 and <a href="#data">data</a>() == 0.
<h3 class=fn>uint <a name="nrefs"></a>TQMemArray::nrefs () const
@@ -400,8 +400,8 @@ reference count is always greater than zero.
<h3 class=fn>bool <a name="operator!-eq"></a>TQMemArray::operator!= ( const&nbsp;<a href="tqmemarray.html">TQMemArray</a>&lt;type&gt;&nbsp;&amp;&nbsp;a ) const
</h3>
-<p> Returns TRUE if this array is different from <em>a</em>; otherwise
-returns FALSE.
+<p> Returns true if this array is different from <em>a</em>; otherwise
+returns false.
<p> The two arrays are compared bitwise.
<p> <p>See also <a href="#operator-eq-eq">operator==</a>().
@@ -415,8 +415,8 @@ reference to this array.
<h3 class=fn>bool <a name="operator-eq-eq"></a>TQMemArray::operator== ( const&nbsp;<a href="tqmemarray.html">TQMemArray</a>&lt;type&gt;&nbsp;&amp;&nbsp;a ) const
</h3>
-<p> Returns TRUE if this array is equal to <em>a</em>; otherwise returns
-FALSE.
+<p> Returns true if this array is equal to <em>a</em>; otherwise returns
+false.
<p> The two arrays are compared bitwise.
<p> <p>See also <a href="#operator!-eq">operator!=</a>().
@@ -446,7 +446,7 @@ passed to setRawData(). This is for consistency checking.
<p> Resizes (expands or shrinks) the array to <em>size</em> elements. The
array becomes a null array if <em>size</em> == 0.
-<p> Returns TRUE if successful, or FALSE if the memory cannot be
+<p> Returns true if successful, or false if the memory cannot be
allocated.
<p> New elements are not initialized.
<p> <em>optim</em> is either <tt>TQGArray::MemOptim</tt> (the default) or
@@ -463,8 +463,8 @@ configuration.
<p> This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Resizes (expands or shrinks) the array to <em>size</em> elements. The
array becomes a null array if <em>size</em> == 0.
-<p> Returns TRUE if successful, i.e. if the memory can be allocated;
-otherwise returns FALSE.
+<p> Returns true if successful, i.e. if the memory can be allocated;
+otherwise returns false.
<p> New elements are not initialized.
<p> <p>See also <a href="#size">size</a>().
@@ -521,8 +521,8 @@ comparison (memcmp()).
</h3>
<p> Truncates the array at position <em>pos</em>.
-<p> Returns TRUE if successful, i.e. if the memory can be allocated;
-otherwise returns FALSE.
+<p> Returns true if successful, i.e. if the memory can be allocated;
+otherwise returns false.
<p> Equivalent to <a href="#resize">resize</a>(<em>pos</em>).
<p> <p>See also <a href="#resize">resize</a>().