author | zautrix <zautrix> | 2004-07-03 18:47:04 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-07-03 18:47:04 (UTC) |
commit | 55413f404aa7a59bfbf38f9f91fabb595eca57ad (patch) (unidiff) | |
tree | 72cba78a4fd3c2caf23d39ce257762ace4726e30 /kmicromail/viewmail.cpp | |
parent | 5e6a0e28ecc7c4bf1eb7ad8637c99e1689623ed5 (diff) | |
download | kdepimpi-55413f404aa7a59bfbf38f9f91fabb595eca57ad.zip kdepimpi-55413f404aa7a59bfbf38f9f91fabb595eca57ad.tar.gz kdepimpi-55413f404aa7a59bfbf38f9f91fabb595eca57ad.tar.bz2 |
Fix of caption
-rw-r--r-- | kmicromail/viewmail.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kmicromail/viewmail.cpp b/kmicromail/viewmail.cpp index 1b74564..b434318 100644 --- a/kmicromail/viewmail.cpp +++ b/kmicromail/viewmail.cpp | |||
@@ -345,17 +345,17 @@ void ViewMail::setText() | |||
345 | { | 345 | { |
346 | ccString += (*it); | 346 | ccString += (*it); |
347 | } | 347 | } |
348 | for ( QStringList::Iterator it = ( m_mail2[2] ).begin(); it != ( m_mail2[2] ).end(); ++it ) | 348 | for ( QStringList::Iterator it = ( m_mail2[2] ).begin(); it != ( m_mail2[2] ).end(); ++it ) |
349 | { | 349 | { |
350 | bccString += (*it); | 350 | bccString += (*it); |
351 | } | 351 | } |
352 | 352 | ||
353 | setCaption( caption().arg( m_mail[0] ) ); | 353 | setCaption( tr("E-Mail by %1").arg( m_mail[0] ) ); |
354 | 354 | ||
355 | m_mailHtml = "<html><body>" | 355 | m_mailHtml = "<html><body>" |
356 | "<table width=\"100%\" border=\"0\"><tr bgcolor=\"#FFDD76\"><td>" | 356 | "<table width=\"100%\" border=\"0\"><tr bgcolor=\"#FFDD76\"><td>" |
357 | "<div align=left><b>" + deHtml( m_mail[1] ) + "</b></div>" | 357 | "<div align=left><b>" + deHtml( m_mail[1] ) + "</b></div>" |
358 | "</td></tr><tr bgcolor=\"#EEEEE6\"><td>" | 358 | "</td></tr><tr bgcolor=\"#EEEEE6\"><td>" |
359 | "<b>" + tr( "From" ) + ": </b><font color=#6C86C0>" + deHtml( m_mail[0] ) + "</font><br>" | 359 | "<b>" + tr( "From" ) + ": </b><font color=#6C86C0>" + deHtml( m_mail[0] ) + "</font><br>" |
360 | "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" + | 360 | "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" + |
361 | tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>" | 361 | tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>" |