diff options
Diffstat (limited to 'doc/html/tqmap-h.html')
-rw-r--r-- | doc/html/tqmap-h.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tqmap-h.html b/doc/html/tqmap-h.html index 152c28adc..161cfe82c 100644 --- a/doc/html/tqmap-h.html +++ b/doc/html/tqmap-h.html @@ -559,7 +559,7 @@ TQ_INLINE_TEMPLATES TQ_TYPENAME TQMapPrivate<Key,T>::Iterator TQMapPrivate // Search correct position in the tree TQMapNodeBase* y = header; TQMapNodeBase* x = header->parent; - bool result = TRUE; + bool result = true; while ( x != 0 ) { result = ( k < key(x) ); y = x; @@ -759,14 +759,14 @@ public: bool isEmpty() const { return sh->node_count == 0; } - iterator insert( const Key& key, const T& value, bool overwrite = TRUE ); + iterator insert( const Key& key, const T& value, bool overwrite = true ); void remove( iterator it ) { detach(); sh->remove( it ); } void remove( const Key& k ); #if defined(TQ_FULL_TEMPLATE_INSTANTIATION) - bool operator==( const TQMap<Key,T>& ) const { return FALSE; } + bool operator==( const TQMap<Key,T>& ) const { return false; } #ifndef TQT_NO_STL - bool operator==( const std::map<Key,T>& ) const { return FALSE; } + bool operator==( const std::map<Key,T>& ) const { return false; } #endif #endif @@ -799,9 +799,9 @@ TQ_INLINE_TEMPLATES TQ_TYPENAME TQMap<Key,T>::insert_pair TQMap<Key,T&g detach(); size_type n = size(); iterator it = sh->insertSingle( x.first ); - bool inserted = FALSE; + bool inserted = false; if ( n < size() ) { - inserted = TRUE; + inserted = true; it.data() = x.second; } return TQPair<iterator,bool>( it, inserted ); |