summaryrefslogtreecommitdiffstats
path: root/kmail/kmfolderdir.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-27 16:55:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-27 16:55:48 +0900
commit8f878546e0a859e78dfc2c6ff7f08507347a76ea (patch)
treef95c1e5a2f97a2e200be23cd5d6ffde91487bd1d /kmail/kmfolderdir.cpp
parent625d3c38cd3a49d07b6e1f511fe06d0792440791 (diff)
downloadtdepim-8f878546e0a859e78dfc2c6ff7f08507347a76ea.tar.gz
tdepim-8f878546e0a859e78dfc2c6ff7f08507347a76ea.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmail/kmfolderdir.cpp')
-rw-r--r--kmail/kmfolderdir.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/kmfolderdir.cpp b/kmail/kmfolderdir.cpp
index 541a8499..19baf48f 100644
--- a/kmail/kmfolderdir.cpp
+++ b/kmail/kmfolderdir.cpp
@@ -204,11 +204,11 @@ bool KMFolderDir::reload(void)
dir.setFilter(TQDir::Files | TQDir::Dirs | TQDir::Hidden);
dir.setNameFilter("*");
- if (!dir.cd(fldPath, TRUE))
+ if (!dir.cd(fldPath, true))
{
TQString msg = i18n("<qt>Cannot enter folder <b>%1</b>.</qt>").arg(fldPath);
KMessageBox::information(0, msg);
- return FALSE;
+ return false;
}
TQFileInfoList* fiList=(TQFileInfoList*)dir.entryInfoList();
@@ -216,7 +216,7 @@ bool KMFolderDir::reload(void)
{
TQString msg = i18n("<qt>Folder <b>%1</b> is unreadable.</qt>").arg(fldPath);
KMessageBox::information(0, msg);
- return FALSE;
+ return false;
}
for (fileInfo=fiList->first(); fileInfo; fileInfo=fiList->next())
@@ -335,7 +335,7 @@ bool KMFolderDir::reload(void)
addDirToParent( *it, folder );
}
}
- return TRUE;
+ return true;
}