summaryrefslogtreecommitdiffstats
path: root/doc/tqasciidict.doc
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-08-06 11:29:57 +0900
commitdcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch)
treed57fe27457a96451f1a67e2a2db268a441d917fc /doc/tqasciidict.doc
parent649c4c61a1f1f479f4532b196f68df476cef2680 (diff)
downloadtqt-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/tqasciidict.doc')
-rw-r--r--doc/tqasciidict.doc20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/tqasciidict.doc b/doc/tqasciidict.doc
index e3ae6ca00..57a7c48ac 100644
--- a/doc/tqasciidict.doc
+++ b/doc/tqasciidict.doc
@@ -106,13 +106,13 @@
bit larger than the expected number of entries). This makes the
hash distribution better and will improve lookup performance.
- When \a caseSensitive is TRUE (the default) TQAsciiDict treats
- "abc" and "Abc" as different keys; when it is FALSE "abc" and
+ When \a caseSensitive is true (the default) TQAsciiDict treats
+ "abc" and "Abc" as different keys; when it is false "abc" and
"Abc" are the same. Case-insensitive comparison only considers the
26 letters in US-ASCII.
- If \a copyKeys is TRUE (the default), the dictionary copies keys
- using strcpy(); if it is FALSE, the dictionary just copies the
+ If \a copyKeys is true (the default), the dictionary copies keys
+ using strcpy(); if it is false, the dictionary just copies the
pointers.
*/
@@ -176,8 +176,8 @@
/*!
\fn bool TQAsciiDict::isEmpty() const
- Returns TRUE if the dictionary is empty, i.e. count() == 0;
- otherwise it returns FALSE.
+ Returns true if the dictionary is empty, i.e. count() == 0;
+ otherwise it returns false.
\sa count()
*/
@@ -223,8 +223,8 @@
\fn bool TQAsciiDict::remove( const char *key )
Removes the item associated with \a key from the dictionary.
- Returns TRUE if successful, i.e. if the key existed in the
- dictionary; otherwise returns FALSE.
+ Returns true if successful, i.e. if the key existed in the
+ dictionary; otherwise returns false.
If there are two or more items with equal keys, then the most
recently inserted item will be removed.
@@ -411,8 +411,8 @@
/*!
\fn bool TQAsciiDictIterator::isEmpty() const
- Returns TRUE if the dictionary is empty, i.e. count() == 0,
- otherwise returns FALSE.
+ Returns true if the dictionary is empty, i.e. count() == 0,
+ otherwise returns false.
\sa count()
*/