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/tqptrstack.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/tqptrstack.html') diff --git a/doc/html/tqptrstack.html b/doc/html/tqptrstack.html index 68659cf38..1cdfdcc2e 100644 --- a/doc/html/tqptrstack.html +++ b/doc/html/tqptrstack.html @@ -89,7 +89,7 @@ without changing the stack.

Destroys the stack. All items will be deleted if autoDelete() is -TRUE. +true.

bool TQPtrStack::autoDelete () const

@@ -101,7 +101,7 @@ TRUE.

Removes all items from the stack, deleting them if autoDelete() is -TRUE. +true.

See also remove().

uint TQPtrStack::count () const @@ -120,8 +120,8 @@ empty.

bool TQPtrStack::isEmpty () const

-

Returns TRUE if the stack contains no elements; otherwise returns -FALSE. +

Returns true if the stack contains no elements; otherwise returns +false.

TQPtrStack::operator type * () const

@@ -135,7 +135,7 @@ empty.

Sets the contents of this stack by making a shallow copy of another stack s. Elements currently in this stack will be -deleted if autoDelete() is TRUE. +deleted if autoDelete() is true.

type * TQPtrStack::pop ()

@@ -160,8 +160,8 @@ reference to the stream.

Removes the top item from the stack and deletes it if autoDelete() -is TRUE. Returns TRUE if there was an item to pop; otherwise -returns FALSE. +is true. Returns true if there was an item to pop; otherwise +returns false.

See also clear().

void TQPtrStack::setAutoDelete ( bool enable ) @@ -169,7 +169,7 @@ returns FALSE.

Defines whether this stack auto-deletes its contents. The same as TQPtrCollection::setAutoDelete(). -

If enable is TRUE the stack auto-deletes its contents; if enable is FALSE the stack does not delete its contents. +

If enable is true the stack auto-deletes its contents; if enable is false the stack does not delete its contents.

See also autoDelete().

type * TQPtrStack::top () const -- cgit v1.2.3