diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
commit | dcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch) | |
tree | d57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqaccel.html | |
parent | 649c4c61a1f1f479f4532b196f68df476cef2680 (diff) | |
download | tqt-rename/true-false-4.tar.gz tqt-rename/true-false-4.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/tqaccel.html')
-rw-r--r-- | doc/html/tqaccel.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tqaccel.html b/doc/html/tqaccel.html index 5588de239..f176c6ec7 100644 --- a/doc/html/tqaccel.html +++ b/doc/html/tqaccel.html @@ -230,14 +230,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 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="tqkeysequence.html">TQKeySequence</a> <a name="key"></a>TQAccel::key ( int id ) @@ -262,7 +262,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 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. @@ -270,7 +270,7 @@ enabled TQAccel. <h3 class=fn>void <a name="setItemEnabled"></a>TQAccel::setItemEnabled ( int id, bool 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>(). |