diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-27 16:55:48 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-27 16:55:48 +0900 |
commit | 8f878546e0a859e78dfc2c6ff7f08507347a76ea (patch) | |
tree | f95c1e5a2f97a2e200be23cd5d6ffde91487bd1d /kmail/objecttreeparser.cpp | |
parent | 625d3c38cd3a49d07b6e1f511fe06d0792440791 (diff) | |
download | tdepim-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/objecttreeparser.cpp')
-rw-r--r-- | kmail/objecttreeparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/objecttreeparser.cpp b/kmail/objecttreeparser.cpp index a93c89c9..de0faee2 100644 --- a/kmail/objecttreeparser.cpp +++ b/kmail/objecttreeparser.cpp @@ -609,7 +609,7 @@ namespace KMail { if ( key.numUserIDs() > 0 && key.userID( 0 ).id() ) messagePart.signer = Kleo::DN( key.userID( 0 ).id() ).prettyDN(); for ( uint iMail = 0; iMail < key.numUserIDs(); ++iMail ) { - // The following if /should/ always result in TRUE but we + // The following if /should/ always result in true but we // won't trust implicitely the plugin that gave us these data. if ( key.userID( iMail ).email() ) { TQString email = TQString::fromUtf8( key.userID( iMail ).email() ); @@ -2982,7 +2982,7 @@ TQString ObjectTreeParser::quotedHTML( const TQString& s, bool decorate ) TQString line; /* search next occurrence of '\n' */ - pos = s.find('\n', beg, FALSE); + pos = s.find('\n', beg, false); if (pos == (unsigned int)(-1)) pos = length; |