diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
commit | dcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch) | |
tree | d57fe27457a96451f1a67e2a2db268a441d917fc /doc/tqmemarray.doc | |
parent | 649c4c61a1f1f479f4532b196f68df476cef2680 (diff) | |
download | tqt-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/tqmemarray.doc')
-rw-r--r-- | doc/tqmemarray.doc | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/tqmemarray.doc b/doc/tqmemarray.doc index 8a62386d3..f46191705 100644 --- a/doc/tqmemarray.doc +++ b/doc/tqmemarray.doc @@ -263,7 +263,7 @@ /*! \fn bool TQMemArray::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 TQMemArray (unlike TQString). @@ -272,7 +272,7 @@ /*! \fn bool TQMemArray::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 TQMemArray::operator==( const TQMemArray<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 TQMemArray::operator!=( const TQMemArray<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. |