diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 12:43:45 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 09:12:50 +0900 |
| commit | a3fc822244ed669c7e71ea624429c815b0d6ede2 (patch) | |
| tree | 46be85985705ef17cc05626b2dfdd1c410a85367 /conduits/memofileconduit/memofiles.cpp | |
| parent | 445267d75b91ebdce885a31f325a5bc9c257d268 (diff) | |
| download | kpilot-a3fc822244ed669c7e71ea624429c815b0d6ede2.tar.gz kpilot-a3fc822244ed669c7e71ea624429c815b0d6ede2.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'conduits/memofileconduit/memofiles.cpp')
| -rw-r--r-- | conduits/memofileconduit/memofiles.cpp | 6 |
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) |
