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/tqvaluevector.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/tqvaluevector.doc')
-rw-r--r-- | doc/tqvaluevector.doc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/tqvaluevector.doc b/doc/tqvaluevector.doc index 6583cded6..0825e441e 100644 --- a/doc/tqvaluevector.doc +++ b/doc/tqvaluevector.doc @@ -413,7 +413,7 @@ /*! \fn bool TQValueVector::empty() const - Returns TRUE if the vector is empty; otherwise returns FALSE. + Returns true if the vector is empty; otherwise returns false. Equivalent to size()==0, only faster. This function is provided for STL compatibility. It is equivalent @@ -425,7 +425,7 @@ /*! \fn bool TQValueVector::isEmpty() const - Returns TRUE if the vector is empty; returns FALSE otherwise. + Returns true if the vector is empty; returns false otherwise. \sa count() */ @@ -493,9 +493,9 @@ Returns a reference to the element with index \a i. If \a ok is non-null, and the index \a i is out of range, *\a ok is set to - FALSE and the returned reference is undefined. If the index \a i + false and the returned reference is undefined. If the index \a i is within the range of the vector, and \a ok is non-null, *\a ok - is set to TRUE and the returned reference is well defined. + is set to true and the returned reference is well defined. */ /*! @@ -505,9 +505,9 @@ Returns a const reference to the element with index \a i. If \a ok is non-null, and the index \a i is out of range, *\a ok is set to - FALSE and the returned reference is undefined. If the index \a i + false and the returned reference is undefined. If the index \a i is within the range of the vector, and \a ok is non-null, *\a ok - is set to TRUE and the returned reference is well defined. + is set to true and the returned reference is well defined. */ /*! @@ -697,8 +697,8 @@ /*! \fn bool TQValueVector::operator==( const TQValueVector<T>& x ) const - Returns TRUE if each element in this vector equals each - corresponding element in \a x; otherwise returns FALSE. + Returns true if each element in this vector equals each + corresponding element in \a x; otherwise returns false. */ /*! @@ -706,8 +706,8 @@ \overload - Returns TRUE if each element in this vector equals each - corresponding element in \a x; otherwise returns FALSE. + Returns true if each element in this vector equals each + corresponding element in \a x; otherwise returns false. */ |