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/qcloseevent.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/qcloseevent.html') diff --git a/doc/html/qcloseevent.html b/doc/html/qcloseevent.html index 3a632cc33..d562c5c49 100644 --- a/doc/html/qcloseevent.html +++ b/doc/html/qcloseevent.html @@ -77,7 +77,7 @@ independent top-level windows in a multi-window application.

TQObjects emits the destroyed() signal when they are deleted.

If the last top-level window is closed, the TQApplication::lastWindowClosed() signal is emitted. -

The isAccepted() function returns TRUE if the event's receiver has +

The isAccepted() function returns true if the event's receiver has agreed to close the widget; call accept() to agree to close the widget and call ignore() if the receiver of this event does not want the widget to be closed. @@ -88,7 +88,7 @@ want the widget to be closed.

Constructs a close event object with the accept parameter flag set -to FALSE. +to false.

See also accept().

void TQCloseEvent::accept () @@ -117,8 +117,8 @@ does not want the widget to be closed.

bool TQCloseEvent::isAccepted () const

-

Returns TRUE if the receiver of the event has agreed to close the -widget; otherwise returns FALSE. +

Returns true if the receiver of the event has agreed to close the +widget; otherwise returns false.

See also accept() and ignore(). -- cgit v1.2.3