diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-16 17:42:59 +0900 |
| commit | 4d495175043c399fdca6e1bb4c74ef176fc76fb4 (patch) | |
| tree | 119a6d76d177dade68b3744cb660fe26b33c9864 /doc/html/tqvaluelist-h.html | |
| parent | cf2c8613706a3685266058db00c0e9f632c5bd24 (diff) | |
| download | tqt-master.tar.gz tqt-master.zip | |
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> |
