summaryrefslogtreecommitdiffstats
path: root/doc/html/tqwaitcondition.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-16 17:42:59 +0900
commit4d495175043c399fdca6e1bb4c74ef176fc76fb4 (patch)
tree119a6d76d177dade68b3744cb660fe26b33c9864 /doc/html/tqwaitcondition.html
parentcf2c8613706a3685266058db00c0e9f632c5bd24 (diff)
downloadtqt-4d495175043c399fdca6e1bb4c74ef176fc76fb4.tar.gz
tqt-4d495175043c399fdca6e1bb4c74ef176fc76fb4.zip
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqwaitcondition.html')
-rw-r--r--doc/html/tqwaitcondition.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tqwaitcondition.html b/doc/html/tqwaitcondition.html
index c96c2e449..f0c297cde 100644
--- a/doc/html/tqwaitcondition.html
+++ b/doc/html/tqwaitcondition.html
@@ -140,10 +140,10 @@ Wait on the thread event object. The thread calling this will
block until either of these conditions is met:
<ul>
<li> Another thread signals it using <a href="#wakeOne">wakeOne</a>() or <a href="#wakeAll">wakeAll</a>(). This
-function will return TRUE in this case.
+function will return true in this case.
<li> <em>time</em> milliseconds has elapsed. If <em>time</em> is ULONG_MAX (the
default), then the wait will never timeout (the event must be
-signalled). This function will return FALSE if the wait timed
+signalled). This function will return false if the wait timed
out.
</ul>
<p> <p>See also <a href="#wakeOne">wakeOne</a>() and <a href="#wakeAll">wakeAll</a>().
@@ -158,10 +158,10 @@ immediately. The <em>mutex</em> will be unlocked, and the calling thread
will block until either of these conditions is met:
<ul>
<li> Another thread signals it using <a href="#wakeOne">wakeOne</a>() or <a href="#wakeAll">wakeAll</a>(). This
-function will return TRUE in this case.
+function will return true in this case.
<li> <em>time</em> milliseconds has elapsed. If <em>time</em> is ULONG_MAX (the
default), then the wait will never timeout (the event must be
-signalled). This function will return FALSE if the wait timed
+signalled). This function will return false if the wait timed
out.
</ul>
<p> The mutex will be returned to the same locked state. This function