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/tqcacheiterator.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/tqcacheiterator.html') diff --git a/doc/html/tqcacheiterator.html b/doc/html/tqcacheiterator.html index 2dce30288..cdeea8d27 100644 --- a/doc/html/tqcacheiterator.html +++ b/doc/html/tqcacheiterator.html @@ -70,9 +70,9 @@ refer an item when that item is removed.

TQCacheIterator provides an operator++(), and an operator+=() to traverse the cache. The current() and currentKey() functions are used to access the current cache item and its key. The atFirst() -and atLast() return TRUE if the iterator points to the first or +and atLast() return true if the iterator points to the first or last item in the cache respectively. The isEmpty() function -returns TRUE if the cache is empty, and count() returns the number +returns true if the cache is empty, and count() 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. @@ -95,8 +95,8 @@ independently from there on.

bool TQCacheIterator::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(). @@ -104,8 +104,8 @@ recently used list.

bool TQCacheIterator::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(). @@ -130,8 +130,8 @@ operates.

bool TQCacheIterator::isEmpty () const

-

Returns TRUE if the cache is empty, i.e. count() == 0; otherwise -it returns FALSE. +

Returns true if the cache is empty, i.e. count() == 0; otherwise +it returns false.

See also count().

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