summaryrefslogtreecommitdiffstats
path: root/kdat/TODO
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-01-06 11:32:15 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-01-06 16:43:33 +0900
commit1dd8222792710b74ab283d3832284455d5affa7d (patch)
tree19587979c9edd23419cb52da1b4a8a005d6b1e9d /kdat/TODO
parent3e22959a47d82ce8baefea9458102340be013350 (diff)
downloadtdeadmin-master.tar.gz
tdeadmin-master.zip
Replace TRUE/FALSE with boolean values true/falseHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kdat/TODO')
-rw-r--r--kdat/TODO8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdat/TODO b/kdat/TODO
index 74d4dab..0e6a300 100644
--- a/kdat/TODO
+++ b/kdat/TODO
@@ -159,8 +159,8 @@ Outstanding Bugs
call Tape::addChild( Archive* archive ) to add the new archive, and
addChild() does call read() in preparation for updating the on-disk
tape file. However, read() refuses to do anything because the tape
- isn't stubbed (_stubbed==FALSE). I don't know what this means yet.
- Forcing _stubbed=TRUE doesn't work either. It looks like _stubbed has
+ isn't stubbed (_stubbed==false). I don't know what this means yet.
+ Forcing _stubbed=true doesn't work either. It looks like _stubbed has
to do with whether the tape ID is recognized as belonging to an index
file on disk or not (see the second paragraph of 2002-01-26).
@@ -212,8 +212,8 @@ c/o rolandg at onlinehome.de:
1) don't return 0 instead of a null TQString
(e.g., BackupProfile::getWorkingDirectory())
-2) don't test for FALSE predicate values with
- !(). Use == FALSE instead.
+2) don't test for false predicate values with
+ !(). Use == false instead.
3) don't piggyback .remove with .first:
_relativeFiles.remove(_relativeFiles.first())