summaryrefslogtreecommitdiffstats
path: root/kmail/kmmsgbase.h
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-29 22:58:05 +0900
commita88d4d648a4ae2d7d7abd23916b49b41c1a867f3 (patch)
tree73aacc657e135ab179010d102fdbd7a0a9edc40d /kmail/kmmsgbase.h
parent409b67ac0559a06dc58da81fc90f0ba959d6068c (diff)
downloadtdepim-a88d4d64.tar.gz
tdepim-a88d4d64.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 8f878546e0a859e78dfc2c6ff7f08507347a76ea)
Diffstat (limited to 'kmail/kmmsgbase.h')
-rw-r--r--kmail/kmmsgbase.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/kmail/kmmsgbase.h b/kmail/kmmsgbase.h
index 1137bb6e..9ed08445 100644
--- a/kmail/kmmsgbase.h
+++ b/kmail/kmmsgbase.h
@@ -163,55 +163,55 @@ public:
/** Convert the given message status to a string. */
TQString statusToSortRank();
- /** Returns TRUE if object is a real message (not KMMsgInfo or KMMsgBase) */
+ /** Returns true if object is a real message (not KMMsgInfo or KMMsgBase) */
virtual bool isMessage(void) const;
- /** Returns TRUE if status unread. Note that new messages are not unread.*/
+ /** Returns true if status unread. Note that new messages are not unread.*/
virtual bool isUnread(void) const;
- /** Returns TRUE if status is new. */
+ /** Returns true if status is new. */
virtual bool isNew(void) const;
- /** Returns TRUE if status is unknown. */
+ /** Returns true if status is unknown. */
virtual bool isOfUnknownStatus(void) const;
- /** Returns TRUE if status is old. */
+ /** Returns true if status is old. */
virtual bool isOld(void) const;
- /** Returns TRUE if status is read. */
+ /** Returns true if status is read. */
virtual bool isRead(void) const;
- /** Returns TRUE if status is deleted. */
+ /** Returns true if status is deleted. */
virtual bool isDeleted(void) const;
- /** Returns TRUE if status is replied. */
+ /** Returns true if status is replied. */
virtual bool isReplied(void) const;
- /** Returns TRUE if status is forwarded. */
+ /** Returns true if status is forwarded. */
virtual bool isForwarded(void) const;
- /** Returns TRUE if status is queued. */
+ /** Returns true if status is queued. */
virtual bool isQueued(void) const;
- /** Returns TRUE if status is todo flaged. */
+ /** Returns true if status is todo flaged. */
virtual bool isTodo(void) const;
- /** Returns TRUE if status is sent. */
+ /** Returns true if status is sent. */
virtual bool isSent(void) const;
- /** Returns TRUE if status is important. */
+ /** Returns true if status is important. */
virtual bool isImportant(void) const;
- /** Returns TRUE if status is watched. */
+ /** Returns true if status is watched. */
virtual bool isWatched(void) const;
- /** Returns TRUE if status is ignored. */
+ /** Returns true if status is ignored. */
virtual bool isIgnored(void) const;
- /** Returns TRUE if status is spam. */
+ /** Returns true if status is spam. */
virtual bool isSpam(void) const;
- /** Returns TRUE if status is not spam. */
+ /** Returns true if status is not spam. */
virtual bool isHam(void) const;
@@ -275,7 +275,7 @@ public:
virtual void setDate(const TQCString &aStrDate);
virtual void setDate(time_t aUnixTime) = 0;
- /** Returns TRUE if changed since last folder-sync. */
+ /** Returns true if changed since last folder-sync. */
virtual bool dirty(void) const { return mDirty; }
/** Change dirty flag. */
@@ -321,8 +321,8 @@ public:
/** Skip leading keyword if keyword has given character at it's end
* (e.g. ':' or ',') and skip the then following blanks (if any) too.
- * If keywordFound is specified it will be TRUE if a keyword was skipped
- * and FALSE otherwise. */
+ * If keywordFound is specified it will be true if a keyword was skipped
+ * and false otherwise. */
static TQString skipKeyword(const TQString& str, TQChar sepChar=':',
bool* keywordFound=0);