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/html/tqvaluelist-h.html | |
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/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> |