summaryrefslogtreecommitdiffstats
path: root/kmail/folderstorage.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/folderstorage.h')
-rw-r--r--kmail/folderstorage.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/folderstorage.h b/kmail/folderstorage.h
index 13f2ba0f..87d63d00 100644
--- a/kmail/folderstorage.h
+++ b/kmail/folderstorage.h
@@ -208,7 +208,7 @@ public:
Emits msgAdded signals */
void emitMsgAddedSignals(int idx);
- /** Returns FALSE, if the message has to be retrieved from an IMAP account
+ /** Returns false, if the message has to be retrieved from an IMAP account
* first. In this case this function does this and cares for the rest */
virtual bool canAddMsgNow(KMMessage* aMsg, int* aIndex_ret);
@@ -310,14 +310,14 @@ public:
on failure. */
virtual int rename(const TQString& newName, KMFolderDir *aParent = 0);
- /** Returns TRUE if a table of contents file is automatically created. */
+ /** Returns true if a table of contents file is automatically created. */
bool autoCreateIndex() const { return mAutoCreateIndex; }
/** Allow/disallow automatic creation of a table of contents file.
- Default is TRUE. */
+ Default is true. */
virtual void setAutoCreateIndex(bool);
- /** Returns TRUE if the table of contents is dirty. This happens when
+ /** Returns true if the table of contents is dirty. This happens when
a message is deleted from the folder. The toc will then be re-created
when the folder is closed. */
bool dirty() const { return mDirty; }
@@ -325,7 +325,7 @@ public:
/** Change the dirty flag. */
void setDirty(bool f);
- /** Returns TRUE if the folder contains deleted messages */
+ /** Returns true if the folder contains deleted messages */
bool needsCompacting() const { return needsCompact; }
virtual void setNeedsCompacting(bool f) { needsCompact = f; }
@@ -618,7 +618,7 @@ friend class KMMsgDict;
bool mExportsSernums :1;
/** if the index is dirty it will be recreated upon close() */
bool mDirty :1;
- /** TRUE if the files of the folder are locked (writable) */
+ /** true if the files of the folder are locked (writable) */
bool mFilesLocked :1;
/** number of unread messages, -1 if not yet set */