From 4d495175043c399fdca6e1bb4c74ef176fc76fb4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 6 Aug 2025 11:29:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Signed-off-by: Michele Calgaro --- doc/html/tqintcacheiterator.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/html/tqintcacheiterator.html') diff --git a/doc/html/tqintcacheiterator.html b/doc/html/tqintcacheiterator.html index a56d662dd..a721d60e6 100644 --- a/doc/html/tqintcacheiterator.html +++ b/doc/html/tqintcacheiterator.html @@ -70,8 +70,8 @@ that refer an item when that item is removed.

TQIntCacheIterator provides an operator++(), and an operator+=() to traverse the cache; current() and currentKey() to access the current cache item and its key; atFirst() atLast(), which return -TRUE if the iterator points to the first/last item in the cache; -isEmpty(), which returns TRUE if the cache is empty; and count(), +true if the iterator points to the first/last item in the cache; +isEmpty(), which returns true if the cache is empty; and count(), which returns the number of items in the cache.

Note that atFirst() and atLast() refer to the iterator's arbitrary ordering, not to the cache's internal least recently used list. @@ -96,8 +96,8 @@ independently from there on.

bool TQIntCacheIterator::atFirst () const

-

Returns TRUE if the iterator points to the first item in the -cache; otherwise returns FALSE. Note that this refers to the +

Returns true if the iterator points to the first item in the +cache; otherwise returns false. Note that this refers to the iterator's arbitrary ordering, not to the cache's internal least recently used list.

See also toFirst() and atLast(). @@ -105,8 +105,8 @@ recently used list.

bool TQIntCacheIterator::atLast () const

-

Returns TRUE if the iterator points to the last item in the cache; -otherwise returns FALSE. Note that this refers to the iterator's +

Returns true if the iterator points to the last item in the cache; +otherwise returns false. Note that this refers to the iterator's arbitrary ordering, not to the cache's internal least recently used list.

See also toLast() and atFirst(). @@ -131,7 +131,7 @@ operates.

bool TQIntCacheIterator::isEmpty () const

-

Returns TRUE if the cache is empty; otherwise returns FALSE. +

Returns true if the cache is empty; otherwise returns false.

See also count().

TQIntCacheIterator::operator type * () const -- cgit v1.2.3