diff options
Diffstat (limited to 'kmail/headerstyle.cpp')
-rw-r--r-- | kmail/headerstyle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/headerstyle.cpp b/kmail/headerstyle.cpp index 6e459c7aa..437fc3fd5 100644 --- a/kmail/headerstyle.cpp +++ b/kmail/headerstyle.cpp @@ -463,7 +463,7 @@ namespace KMail { TQString spamHTML; - if ( configReader.readBoolEntry( "showSpamtqStatus", true ) ) { + if ( configReader.readBoolEntry( "showSpamStatus", true ) ) { SpamScores scores = SpamHeaderAnalyzer::getSpamScores( message ); for ( SpamScoresIterator it = scores.begin(); it != scores.end(); ++it ) spamHTML += (*it).agent() + " " + @@ -841,7 +841,7 @@ namespace KMail { if ( !spamHTML.isEmpty() ) headerStr.append( TQString( "<div class=\"spamheader\" dir=\"%1\"><b>%2</b> <span style=\"padding-left: 20px;\">%3</span></div>\n") - .tqarg( subjectDir, i18n("Spam tqStatus:"), spamHTML ) ); + .tqarg( subjectDir, i18n("Spam Status:"), spamHTML ) ); headerStr += "</div>\n\n"; return headerStr; |