From b87533f9904c10f24d6b2e8177c00944e3efe15b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 26 Nov 2025 15:11:22 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Manually cherry-picked from commit 4d495175 Signed-off-by: Michele Calgaro --- doc/html/qintcacheiterator.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/html/qintcacheiterator.html') diff --git a/doc/html/qintcacheiterator.html b/doc/html/qintcacheiterator.html index bacc26b04..86deecc19 100644 --- a/doc/html/qintcacheiterator.html +++ b/doc/html/qintcacheiterator.html @@ -71,8 +71,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. @@ -97,8 +97,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(). @@ -106,8 +106,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(). @@ -132,7 +132,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