-rw-r--r-- | core/pim/addressbook/contacteditor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp index 5c1391b..12d7421 100644 --- a/core/pim/addressbook/contacteditor.cpp +++ b/core/pim/addressbook/contacteditor.cpp | |||
@@ -1417,7 +1417,7 @@ void ContactEditor::setEntry( const OContact &entry ) { | |||
1417 | *itV = ent.defaultEmail(); | 1417 | *itV = ent.defaultEmail(); |
1418 | 1418 | ||
1419 | if ( *it == tr("Emails" )) | 1419 | if ( *it == tr("Emails" )) |
1420 | *itV = ent.emailList().join(","); // :SX | 1420 | *itV = ent.emailList().join(", "); // :SX |
1421 | 1421 | ||
1422 | if ( *it == tr("Home Phone" )) | 1422 | if ( *it == tr("Home Phone" )) |
1423 | *itV = ent.homePhone(); | 1423 | *itV = ent.homePhone(); |
@@ -1617,9 +1617,9 @@ void ContactEditor::saveEntry() { | |||
1617 | QString allemail; | 1617 | QString allemail; |
1618 | QString defaultmail; | 1618 | QString defaultmail; |
1619 | parseEmailFrom( *itV, defaultmail, allemail ); | 1619 | parseEmailFrom( *itV, defaultmail, allemail ); |
1620 | ent.clearEmails(); | 1620 | // ent.clearEmails(); |
1621 | ent.setDefaultEmail( defaultmail ); | 1621 | ent.setDefaultEmail( defaultmail ); |
1622 | ent.insertEmails( *itV ); | 1622 | ent.setEmails( allemail ); |
1623 | } | 1623 | } |
1624 | 1624 | ||
1625 | if ( *it == tr("Home Phone" )) | 1625 | if ( *it == tr("Home Phone" )) |