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

TQAsciiCacheIterator provides an operator++() and an operator+=() to traverse the cache; current() and currentKey() to access the current cache item and its key. It also provides atFirst() and -atLast(), which return TRUE if the iterator points to the first or +atLast(), which 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 TQAsciiCacheIterator::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 TQAsciiCacheIterator::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 TQAsciiCacheIterator::isEmpty () const

-

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

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

See also count().

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