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/ntqthread.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/ntqthread.html') diff --git a/doc/html/ntqthread.html b/doc/html/ntqthread.html index 8fc0e5660..ce1e9397b 100644 --- a/doc/html/ntqthread.html +++ b/doc/html/ntqthread.html @@ -148,7 +148,7 @@ size is outside these limits. TQThread destructor.

Note that deleting a TQThread object will not stop the execution of the thread it represents. Deleting a running TQThread (i.e. -finished() returns FALSE) will probably result in a program crash. +finished() returns false) will probably result in a program crash. You can wait() on a thread to make sure that it has finished.

TQt::HANDLE TQThread::currentThread () [static] @@ -166,7 +166,7 @@ waiting for its termination.

bool TQThread::finished () const

-Returns TRUE if the thread is finished; otherwise returns FALSE. +Returns true if the thread is finished; otherwise returns false.

void TQThread::msleep ( unsigned long msecs ) [static protected]

@@ -187,7 +187,7 @@ will end the execution of the thread.

bool TQThread::running () const

-Returns TRUE if the thread is running; otherwise returns FALSE. +Returns true if the thread is running; otherwise returns false.

void TQThread::sleep ( unsigned long secs ) [static protected]

@@ -230,11 +230,11 @@ conditions is met:

This provides similar functionality to the POSIX pthread_join() function. -- cgit v1.2.3