diff options
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. */ |