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/tqthread.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/tqthread.html') diff --git a/doc/html/tqthread.html b/doc/html/tqthread.html index 8858f4aaa..e8b8a1099 100644 --- a/doc/html/tqthread.html +++ b/doc/html/tqthread.html @@ -146,7 +146,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] @@ -164,7 +164,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]

@@ -181,7 +181,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]

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

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