summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqaccel.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
commitb87533f9904c10f24d6b2e8177c00944e3efe15b (patch)
treec1106a381c851b51e86004698457aef1211b77be /doc/html/ntqaccel.html
parent894037c3e68e1573a34183d936171f8cda5085f3 (diff)
downloadtqt-r14.1.x.tar.gz
tqt-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/false - part 4r14.1.x
Manually cherry-picked from commit 4d495175 Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqaccel.html')
-rw-r--r--doc/html/ntqaccel.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/ntqaccel.html b/doc/html/ntqaccel.html
index b0d2c23ce..75018136a 100644
--- a/doc/html/ntqaccel.html
+++ b/doc/html/ntqaccel.html
@@ -231,14 +231,14 @@ negative identifier less than -1.
<p>Example: <a href="tutorial1-14.html#x2438">t14/gamebrd.cpp</a>.
<h3 class=fn>bool <a name="isEnabled"></a>TQAccel::isEnabled () const
</h3>
-Returns TRUE if the accelerator is enabled; otherwise returns
-FALSE.
+Returns true if the accelerator is enabled; otherwise returns
+false.
<p> <p>See also <a href="#setEnabled">setEnabled</a>() and <a href="#isItemEnabled">isItemEnabled</a>().
<h3 class=fn>bool <a name="isItemEnabled"></a>TQAccel::isItemEnabled ( int&nbsp;id ) const
</h3>
-Returns TRUE if the accelerator item with the identifier <em>id</em> is
-enabled. Returns FALSE if the item is disabled or cannot be found.
+Returns true if the accelerator item with the identifier <em>id</em> is
+enabled. Returns false if the item is disabled or cannot be found.
<p> <p>See also <a href="#setItemEnabled">setItemEnabled</a>() and <a href="#isEnabled">isEnabled</a>().
<h3 class=fn><a href="ntqkeysequence.html">TQKeySequence</a> <a name="key"></a>TQAccel::key ( int&nbsp;id )
@@ -263,7 +263,7 @@ Removes the accelerator item with the identifier <em>id</em>.
serves no purpose anymore
<h3 class=fn>void <a name="setEnabled"></a>TQAccel::setEnabled ( bool&nbsp;enable )
</h3>
-Enables the accelerator if <em>enable</em> is TRUE, or disables it if <em>enable</em> is FALSE.
+Enables the accelerator if <em>enable</em> is true, or disables it if <em>enable</em> is false.
<p> Individual keys can also be enabled or disabled using
<a href="#setItemEnabled">setItemEnabled</a>(). To work, a key must be an enabled item in an
enabled TQAccel.
@@ -271,7 +271,7 @@ enabled TQAccel.
<h3 class=fn>void <a name="setItemEnabled"></a>TQAccel::setItemEnabled ( int&nbsp;id, bool&nbsp;enable )
</h3>
-Enables the accelerator item with the identifier <em>id</em> if <em>enable</em> is TRUE, and disables item <em>id</em> if <em>enable</em> is FALSE.
+Enables the accelerator item with the identifier <em>id</em> if <em>enable</em> is true, and disables item <em>id</em> if <em>enable</em> is false.
<p> To work, an item must be enabled and be in an enabled TQAccel.
<p> <p>See also <a href="#isItemEnabled">isItemEnabled</a>() and <a href="#isEnabled">isEnabled</a>().