diff options
Diffstat (limited to 'doc/tqvaluelist.doc')
-rw-r--r-- | doc/tqvaluelist.doc | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/doc/tqvaluelist.doc b/doc/tqvaluelist.doc index ed6c30c96..3ab4cf89b 100644 --- a/doc/tqvaluelist.doc +++ b/doc/tqvaluelist.doc @@ -308,8 +308,8 @@ Compares both lists. - Returns TRUE if this list and \a l are equal; otherwise returns - FALSE. + Returns true if this list and \a l are equal; otherwise returns + false. */ /*! @@ -317,8 +317,8 @@ \overload - Returns TRUE if this list and \a l are equal; otherwise returns - FALSE. + Returns true if this list and \a l are equal; otherwise returns + false. This operator is provided for compatibility with STL containers. */ @@ -349,8 +349,8 @@ Compares both lists. - Returns TRUE if this list and \a l are unequal; otherwise returns - FALSE. + Returns true if this list and \a l are unequal; otherwise returns + false. */ /*! @@ -472,8 +472,8 @@ /*! \fn bool TQValueList::empty() const - Returns TRUE if the list contains no items; otherwise returns - FALSE. + Returns true if the list contains no items; otherwise returns + false. \sa size() */ @@ -522,7 +522,7 @@ \fn reference TQValueList::front() Returns a reference to the first item. If the list contains no - first item (i.e. empty() returns TRUE), the return value is + first item (i.e. empty() returns true), the return value is undefined. This function is provided for STL compatibility. It is equivalent @@ -541,7 +541,7 @@ \fn reference TQValueList::back() Returns a reference to the last item. If the list contains no last - item (i.e. empty() returns TRUE), the return value is undefined. + item (i.e. empty() returns true), the return value is undefined. This function is provided for STL compatibility. It is equivalent to last(). @@ -713,8 +713,8 @@ /*! \fn bool TQValueList::isEmpty() const - Returns TRUE if the list contains no items; otherwise returns - FALSE. + Returns true if the list contains no items; otherwise returns + false. \sa count() */ @@ -805,7 +805,7 @@ \fn T& TQValueList::first() Returns a reference to the first item. If the list contains no - first item (i.e. isEmpty() returns TRUE), the return value is + first item (i.e. isEmpty() returns true), the return value is undefined. \sa last() @@ -821,7 +821,7 @@ \fn T& TQValueList::last() Returns a reference to the last item. If the list contains no last - item (i.e. empty() returns TRUE), the return value is undefined. + item (i.e. empty() returns true), the return value is undefined. */ /*! @@ -1009,15 +1009,15 @@ /*! \fn bool TQValueListIterator::operator==( const TQValueListIterator<T>& it ) const - Compares this iterator and \a it and returns TRUE if they point to - the same item; otherwise returns FALSE. + Compares this iterator and \a it and returns true if they point to + the same item; otherwise returns false. */ /*! \fn bool TQValueListIterator::operator!=( const TQValueListIterator<T>& it ) const - Compares this iterator and \a it and returns TRUE if they point to - different items; otherwise returns FALSE. + Compares this iterator and \a it and returns true if they point to + different items; otherwise returns false. */ /***************************************************************************** @@ -1152,15 +1152,15 @@ /*! \fn bool TQValueListConstIterator::operator==( const TQValueListConstIterator<T>& it ) const - Compares this iterator with \a it and returns TRUE if they point - to the same item; otherwise returns FALSE. + Compares this iterator with \a it and returns true if they point + to the same item; otherwise returns false. */ /*! \fn bool TQValueListConstIterator::operator!=( const TQValueListConstIterator<T>& it ) const - Compares this iterator with \a it and returns TRUE if they point - to different items; otherwise returns FALSE. + Compares this iterator with \a it and returns true if they point + to different items; otherwise returns false. */ |