summaryrefslogtreecommitdiffstats
path: root/conduits/memofileconduit
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-28 12:43:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-02 09:13:08 +0900
commitbc1e1feb998dbde27fc1ba40c9edcf0165c6dc19 (patch)
tree44e7c1c198dd57036d9160737797bca8de7ab8b9 /conduits/memofileconduit
parent6a8d645ce8fe121ba5d88dd89a1cf0c39f83816d (diff)
downloadkpilot-r14.1.4.tar.gz
kpilot-r14.1.4.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a3fc822244ed669c7e71ea624429c815b0d6ede2)
Diffstat (limited to 'conduits/memofileconduit')
-rw-r--r--conduits/memofileconduit/memofiles.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/conduits/memofileconduit/memofiles.cpp b/conduits/memofileconduit/memofiles.cpp
index e1bb91e..99114c8 100644
--- a/conduits/memofileconduit/memofiles.cpp
+++ b/conduits/memofileconduit/memofiles.cpp
@@ -628,7 +628,7 @@ bool Memofiles::folderRemove(const TQDir &_d)
TQFileInfo info(d, *it);
if(info.isDir()) {
if(!folderRemove(TQDir(info.filePath())))
- return FALSE;
+ return false;
} else {
DEBUGKPILOT << fname
<< ": deleting file: [" << info.filePath() << "]" << endl;
@@ -637,12 +637,12 @@ bool Memofiles::folderRemove(const TQDir &_d)
}
TQString name = d.dirName();
if(!d.cdUp())
- return FALSE;
+ return false;
DEBUGKPILOT << fname
<< ": removing folder: [" << name << "]" << endl;
d.rmdir(name);
- return TRUE;
+ return true;
}
TQString Memofiles::filename(PilotMemo * memo)