summaryrefslogtreecommitdiff
path: root/libopie2
authoreilers <eilers>2002-12-09 15:08:30 (UTC)
committer eilers <eilers>2002-12-09 15:08:30 (UTC)
commite487238141c57df63252e41a47b409cbb1f9ae83 (patch) (unidiff)
tree6b98869056d5444d65432f3ba313a46273387118 /libopie2
parent9aa7570be3c5417314f5c865344b948a90450b48 (diff)
downloadopie-e487238141c57df63252e41a47b409cbb1f9ae83.zip
opie-e487238141c57df63252e41a47b409cbb1f9ae83.tar.gz
opie-e487238141c57df63252e41a47b409cbb1f9ae83.tar.bz2
Added preview for default email and all email
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/ocontact.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/libopie2/opiepim/ocontact.cpp b/libopie2/opiepim/ocontact.cpp
index efa2777..6aec62e 100644
--- a/libopie2/opiepim/ocontact.cpp
+++ b/libopie2/opiepim/ocontact.cpp
@@ -502,9 +502,13 @@ QString OContact::toRichText() const
502 502
503 // the others... 503 // the others...
504 QString str; 504 QString str;
505 QString defEmail = defaultEmail();
506 if ( !defEmail.isEmpty() )
507 text += "<b>" + QObject::tr("Default Email: ") + "</b>"
508 + Qtopia::escapeString(defEmail) + "<br>";
505 str = emails(); 509 str = emails();
506 if ( !str.isEmpty() ) 510 if ( !str.isEmpty() && ( str != defEmail ) )
507 text += "<b>" + QObject::tr("Email Addresses: ") + "</b>" 511 text += "<b>" + QObject::tr("All Emails: ") + "</b>"
508 + Qtopia::escapeString(str) + "<br>"; 512 + Qtopia::escapeString(str) + "<br>";
509 str = homePhone(); 513 str = homePhone();
510 if ( !str.isEmpty() ) 514 if ( !str.isEmpty() )