summaryrefslogtreecommitdiffstats
path: root/doc/html/tqthread.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqthread.html')
-rw-r--r--doc/html/tqthread.html12
1 files changed, 6 insertions, 6 deletions
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.
<p> Note that deleting a TQThread object will not stop the execution of
the thread it represents. Deleting a running TQThread (i.e.
-<a href="#finished">finished</a>() returns FALSE) will probably result in a program crash.
+<a href="#finished">finished</a>() returns false) will probably result in a program crash.
You can <a href="#wait">wait</a>() on a thread to make sure that it has finished.
<h3 class=fn>TQt::HANDLE <a name="currentThread"></a>TQThread::currentThread ()<tt> [static]</tt>
@@ -164,7 +164,7 @@ waiting for its termination.
<h3 class=fn>bool <a name="finished"></a>TQThread::finished () const
</h3>
-Returns TRUE if the thread is finished; otherwise returns FALSE.
+Returns true if the thread is finished; otherwise returns false.
<h3 class=fn>void <a name="msleep"></a>TQThread::msleep ( unsigned&nbsp;long&nbsp;msecs )<tt> [static protected]</tt>
</h3>
@@ -181,7 +181,7 @@ will end the execution of the thread.
<h3 class=fn>bool <a name="running"></a>TQThread::running () const
</h3>
-Returns TRUE if the thread is running; otherwise returns FALSE.
+Returns true if the thread is running; otherwise returns false.
<h3 class=fn>void <a name="sleep"></a>TQThread::sleep ( unsigned&nbsp;long&nbsp;secs )<tt> [static protected]</tt>
</h3>
@@ -224,11 +224,11 @@ conditions is met:
<p> <ul>
<li> The thread associated with this TQThread object has finished
execution (i.e. when it returns from <a href="#run">run</a>()). This function
-will return TRUE if the thread has finished. It also returns
-TRUE if the thread has not been started yet.
+will return true if the thread has finished. It also returns
+true if the thread has not been started yet.
<li> <em>time</em> milliseconds has elapsed. If <em>time</em> is ULONG_MAX (the
default), then the wait will never timeout (the thread must
-return from <a href="#run">run</a>()). This function will return FALSE if the
+return from <a href="#run">run</a>()). This function will return false if the
wait timed out.
</ul>
<p> This provides similar functionality to the POSIX <tt>pthread_join()</tt> function.