diff options
Diffstat (limited to 'doc/html/tqvaluelist-h.html')
-rw-r--r-- | doc/html/tqvaluelist-h.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tqvaluelist-h.html b/doc/html/tqvaluelist-h.html index 2bfee1f14..e2bf06f13 100644 --- a/doc/html/tqvaluelist-h.html +++ b/doc/html/tqvaluelist-h.html @@ -495,7 +495,7 @@ public: bool operator== ( const std::list<T>& l ) const { if ( size() != l.size() ) - return FALSE; + return false; const_iterator it2 = begin(); #if !defined(Q_CC_MIPS) typename @@ -503,8 +503,8 @@ public: std::list<T>::const_iterator it = l.begin(); for ( ; it2 != end(); ++it2, ++it ) if ( !((*it2) == (*it)) ) - return FALSE; - return TRUE; + return false; + return true; } #endif bool operator== ( const TQValueList<T>& l ) const; @@ -614,13 +614,13 @@ template <class T> TQ_INLINE_TEMPLATES bool TQValueList<T>::operator== ( const TQValueList<T>& l ) const { if ( size() != l.size() ) - return FALSE; + return false; const_iterator it2 = begin(); const_iterator it = l.begin(); for( ; it != l.end(); ++it, ++it2 ) if ( !( *it == *it2 ) ) - return FALSE; - return TRUE; + return false; + return true; } template <class T> |