diff options
Diffstat (limited to 'kmail/headerstyle.cpp')
-rw-r--r-- | kmail/headerstyle.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmail/headerstyle.cpp b/kmail/headerstyle.cpp index ac45aeeb6..405f802b1 100644 --- a/kmail/headerstyle.cpp +++ b/kmail/headerstyle.cpp @@ -457,7 +457,7 @@ namespace KMail { } // Spam header display. - // If the spamSpamtqStatus config value is true then we look for headers + // If the spamSpamStatus config value is true then we look for headers // from a few spam filters and try to create visually meaningful graphics // out of the spam scores. @@ -493,7 +493,7 @@ namespace KMail { presence = imProxy->presenceString( kabcUid ); if ( !presence.isEmpty() ) { - TQString presenceIcon = TQString::tqfromLatin1( " <img src=\"%1\"/>" ) + TQString presenceIcon = TQString::fromLatin1( " <img src=\"%1\"/>" ) .tqarg( imgToDataUrl( imProxy->presenceIcon( kabcUid ).convertToImage() ) ); presence += presenceIcon; } @@ -830,8 +830,8 @@ namespace KMail { headerStr.append( TQString( "<tr><th>%1</th>\n" "<td dir=\"%2\">%3</td></tr>\n") .tqarg(i18n("Sender status: ")) - .tqarg( directionOf( onlinetqStatus ) ) - .tqarg(onlinetqStatus)); + .tqarg( directionOf( onlineStatus ) ) + .tqarg(onlineStatus)); */ headerStr.append( TQString("<tr><td colspan=\"2\"><div id=\"attachmentInjectionPoint\"></div></td></tr>" ) ); headerStr.append( @@ -853,7 +853,7 @@ namespace KMail { TQBuffer buffer( ba ); buffer.open( IO_WriteOnly ); image.save( &buffer, fmt ); - return TQString::tqfromLatin1("data:image/%1;base64,%2") + return TQString::fromLatin1("data:image/%1;base64,%2") .tqarg( fmt, KCodecs::base64Encode( ba ).data() ); } |