diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-26 15:11:22 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-26 15:11:22 +0900 |
| commit | b87533f9904c10f24d6b2e8177c00944e3efe15b (patch) | |
| tree | c1106a381c851b51e86004698457aef1211b77be /doc/qmemarray.doc | |
| parent | 894037c3e68e1573a34183d936171f8cda5085f3 (diff) | |
| download | tqt-r14.1.x.tar.gz tqt-r14.1.x.zip | |
Replace TRUE/FALSE with boolean values true/false - part 4r14.1.x
Manually cherry-picked from commit 4d495175
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/qmemarray.doc')
| -rw-r--r-- | doc/qmemarray.doc | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/qmemarray.doc b/doc/qmemarray.doc index 09fd67c5f..b05201b16 100644 --- a/doc/qmemarray.doc +++ b/doc/qmemarray.doc @@ -263,7 +263,7 @@ /*! \fn bool QMemArray::isEmpty() const - Returns TRUE if the array is empty; otherwise returns FALSE. + Returns true if the array is empty; otherwise returns false. isEmpty() is equivalent to isNull() for QMemArray (unlike TQString). @@ -272,7 +272,7 @@ /*! \fn bool QMemArray::isNull() const - Returns TRUE if the array is null; otherwise returns FALSE. + Returns true if the array is null; otherwise returns false. A null array has size() == 0 and data() == 0. */ @@ -283,7 +283,7 @@ Resizes (expands or shrinks) the array to \a size elements. The array becomes a null array if \a size == 0. - Returns TRUE if successful, or FALSE if the memory cannot be + Returns true if successful, or false if the memory cannot be allocated. New elements are not initialized. @@ -306,8 +306,8 @@ Resizes (expands or shrinks) the array to \a size elements. The array becomes a null array if \a size == 0. - Returns TRUE if successful, i.e. if the memory can be allocated; - otherwise returns FALSE. + Returns true if successful, i.e. if the memory can be allocated; + otherwise returns false. New elements are not initialized. @@ -319,8 +319,8 @@ Truncates the array at position \a pos. - Returns TRUE if successful, i.e. if the memory can be allocated; - otherwise returns FALSE. + Returns true if successful, i.e. if the memory can be allocated; + otherwise returns false. Equivalent to resize(\a pos). @@ -334,8 +334,8 @@ different from -1, then the array will be resized before being filled. - Returns TRUE if successful, i.e. if \a size is -1, or \a size is - != -1 and the memory can be allocated; otherwise returns FALSE. + Returns true if successful, i.e. if \a size is -1, or \a size is + != -1 and the memory can be allocated; otherwise returns false. \sa resize() */ @@ -534,8 +534,8 @@ /*! \fn bool QMemArray::operator==( const QMemArray<type> &a ) const - Returns TRUE if this array is equal to \a a; otherwise returns - FALSE. + Returns true if this array is equal to \a a; otherwise returns + false. The two arrays are compared bitwise. @@ -545,8 +545,8 @@ /*! \fn bool QMemArray::operator!=( const QMemArray<type> &a ) const - Returns TRUE if this array is different from \a a; otherwise - returns FALSE. + Returns true if this array is different from \a a; otherwise + returns false. The two arrays are compared bitwise. |
