-rw-r--r-- | core/pim/addressbook/contacteditor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp index fd7f009..5c1391b 100644 --- a/core/pim/addressbook/contacteditor.cpp +++ b/core/pim/addressbook/contacteditor.cpp @@ -1418,5 +1418,5 @@ void ContactEditor::setEntry( const OContact &entry ) { if ( *it == tr("Emails" )) - *itV = ent.emailList().join(";"); + *itV = ent.emailList().join(","); // :SX if ( *it == tr("Home Phone" )) @@ -1618,4 +1618,5 @@ void ContactEditor::saveEntry() { QString defaultmail; parseEmailFrom( *itV, defaultmail, allemail ); + ent.clearEmails(); ent.setDefaultEmail( defaultmail ); ent.insertEmails( *itV ); |