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