author | eilers <eilers> | 2002-10-08 15:22:00 (UTC) |
---|---|---|
committer | eilers <eilers> | 2002-10-08 15:22:00 (UTC) |
commit | faeb94a4000dc539577af465107b5d10903f92d6 (patch) (unidiff) | |
tree | 5a03f2a333b97ea329ef59002ea1ba6d0bf12943 | |
parent | 55c7fa47ac6784ae2bca5ff20e6130c5993e00f2 (diff) | |
download | opie-faeb94a4000dc539577af465107b5d10903f92d6.zip opie-faeb94a4000dc539577af465107b5d10903f92d6.tar.gz opie-faeb94a4000dc539577af465107b5d10903f92d6.tar.bz2 |
email handling fixed
-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 | |||
@@ -1396,49 +1396,49 @@ void ContactEditor::setEntry( const OContact &entry ) { | |||
1396 | } | 1396 | } |
1397 | 1397 | ||
1398 | QStringList::Iterator itV; | 1398 | QStringList::Iterator itV; |
1399 | for ( it = slChooserNames.begin(), itV = slChooserValues.begin(); it != slChooserNames.end(); ++it, ++itV ) { | 1399 | for ( it = slChooserNames.begin(), itV = slChooserValues.begin(); it != slChooserNames.end(); ++it, ++itV ) { |
1400 | 1400 | ||
1401 | if ( *it == tr("Business Phone") || *it == tr("Work Phone" )) | 1401 | if ( *it == tr("Business Phone") || *it == tr("Work Phone" )) |
1402 | *itV = ent.businessPhone(); | 1402 | *itV = ent.businessPhone(); |
1403 | /* | 1403 | /* |
1404 | if ( *it == "Business 2 Phone" ) | 1404 | if ( *it == "Business 2 Phone" ) |
1405 | *itV = ent.business2Phone(); | 1405 | *itV = ent.business2Phone(); |
1406 | */ | 1406 | */ |
1407 | if ( *it == tr("Business Fax") || *it == tr("Work Fax" )) | 1407 | if ( *it == tr("Business Fax") || *it == tr("Work Fax" )) |
1408 | *itV = ent.businessFax(); | 1408 | *itV = ent.businessFax(); |
1409 | 1409 | ||
1410 | if ( *it == tr("Business Mobile") || *it == tr("work Mobile" )) | 1410 | if ( *it == tr("Business Mobile") || *it == tr("work Mobile" )) |
1411 | *itV = ent.businessMobile(); | 1411 | *itV = ent.businessMobile(); |
1412 | /* | 1412 | /* |
1413 | if ( *it == "Company Phone" ) | 1413 | if ( *it == "Company Phone" ) |
1414 | *itV = ent.companyPhone(); | 1414 | *itV = ent.companyPhone(); |
1415 | */ | 1415 | */ |
1416 | if ( *it == tr("Default Email" )) | 1416 | if ( *it == tr("Default Email" )) |
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(); |
1424 | /* | 1424 | /* |
1425 | if ( *it == "Home 2 Phone" ) | 1425 | if ( *it == "Home 2 Phone" ) |
1426 | *itV = ent.home2Phone(); | 1426 | *itV = ent.home2Phone(); |
1427 | */ | 1427 | */ |
1428 | if ( *it == tr("Home Fax" )) | 1428 | if ( *it == tr("Home Fax" )) |
1429 | *itV = ent.homeFax(); | 1429 | *itV = ent.homeFax(); |
1430 | 1430 | ||
1431 | if ( *it == tr("Home Mobile" )) | 1431 | if ( *it == tr("Home Mobile" )) |
1432 | *itV = ent.homeMobile(); | 1432 | *itV = ent.homeMobile(); |
1433 | /* | 1433 | /* |
1434 | if ( *it == "Car Phone" ) | 1434 | if ( *it == "Car Phone" ) |
1435 | *itV = ent.carPhone(); | 1435 | *itV = ent.carPhone(); |
1436 | 1436 | ||
1437 | if ( *it == "ISDN Phone" ) | 1437 | if ( *it == "ISDN Phone" ) |
1438 | *itV = ent.ISDNPhone(); | 1438 | *itV = ent.ISDNPhone(); |
1439 | 1439 | ||
1440 | if ( *it == "Other Phone" ) | 1440 | if ( *it == "Other Phone" ) |
1441 | *itV = ent.otherPhone(); | 1441 | *itV = ent.otherPhone(); |
1442 | */ | 1442 | */ |
1443 | if ( *it == tr("Business Pager") || *it == tr("Work Pager" )) | 1443 | if ( *it == tr("Business Pager") || *it == tr("Work Pager" )) |
1444 | *itV = ent.businessPager(); | 1444 | *itV = ent.businessPager(); |
@@ -1596,51 +1596,51 @@ void ContactEditor::saveEntry() { | |||
1596 | for ( it = slChooserNames.begin(), itV = slChooserValues.begin(); it != slChooserNames.end(); ++it, ++itV ) { | 1596 | for ( it = slChooserNames.begin(), itV = slChooserValues.begin(); it != slChooserNames.end(); ++it, ++itV ) { |
1597 | 1597 | ||
1598 | if ( *it == tr("Business Phone") || *it == tr("Work Phone" )) | 1598 | if ( *it == tr("Business Phone") || *it == tr("Work Phone" )) |
1599 | ent.setBusinessPhone( *itV ); | 1599 | ent.setBusinessPhone( *itV ); |
1600 | /* | 1600 | /* |
1601 | if ( *it == tr("Business 2 Phone" ) | 1601 | if ( *it == tr("Business 2 Phone" ) |
1602 | ent.setBusiness2Phone( *itV ); | 1602 | ent.setBusiness2Phone( *itV ); |
1603 | */ | 1603 | */ |
1604 | if ( *it == tr("Business Fax") || *it == tr("Work Fax" )) | 1604 | if ( *it == tr("Business Fax") || *it == tr("Work Fax" )) |
1605 | ent.setBusinessFax( *itV ); | 1605 | ent.setBusinessFax( *itV ); |
1606 | 1606 | ||
1607 | if ( *it == tr("Business Mobile") || *it == tr("Work Mobile" )) | 1607 | if ( *it == tr("Business Mobile") || *it == tr("Work Mobile" )) |
1608 | ent.setBusinessMobile( *itV ); | 1608 | ent.setBusinessMobile( *itV ); |
1609 | /* | 1609 | /* |
1610 | if ( *it == "Company Phone" ) | 1610 | if ( *it == "Company Phone" ) |
1611 | ent.setCompanyPhone( *itV ); | 1611 | ent.setCompanyPhone( *itV ); |
1612 | */ | 1612 | */ |
1613 | //if ( *it == "Default Email" ) | 1613 | //if ( *it == "Default Email" ) |
1614 | //ent.setDefaultEmail( *itV ); | 1614 | //ent.setDefaultEmail( *itV ); |
1615 | 1615 | ||
1616 | if ( *it == tr("Emails" )) { | 1616 | if ( *it == tr("Emails" )) { |
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" )) |
1626 | ent.setHomePhone( *itV ); | 1626 | ent.setHomePhone( *itV ); |
1627 | /* | 1627 | /* |
1628 | if ( *it == "Home 2 Phone" ) | 1628 | if ( *it == "Home 2 Phone" ) |
1629 | ent.setHome2Phone( *itV ); | 1629 | ent.setHome2Phone( *itV ); |
1630 | */ | 1630 | */ |
1631 | if ( *it == tr("Home Fax" )) | 1631 | if ( *it == tr("Home Fax" )) |
1632 | ent.setHomeFax( *itV ); | 1632 | ent.setHomeFax( *itV ); |
1633 | 1633 | ||
1634 | if ( *it == tr("Home Mobile" )) | 1634 | if ( *it == tr("Home Mobile" )) |
1635 | ent.setHomeMobile( *itV ); | 1635 | ent.setHomeMobile( *itV ); |
1636 | /* | 1636 | /* |
1637 | if ( *it == "Car Phone" ) | 1637 | if ( *it == "Car Phone" ) |
1638 | ent.setCarPhone( *itV ); | 1638 | ent.setCarPhone( *itV ); |
1639 | 1639 | ||
1640 | if ( *it == "ISDN Phone" ) | 1640 | if ( *it == "ISDN Phone" ) |
1641 | ent.setISDNPhone( *itV ); | 1641 | ent.setISDNPhone( *itV ); |
1642 | 1642 | ||
1643 | if ( *it == "Other Phone" ) | 1643 | if ( *it == "Other Phone" ) |
1644 | ent.setOtherPhone( *itV ); | 1644 | ent.setOtherPhone( *itV ); |
1645 | */ | 1645 | */ |
1646 | if ( *it == tr("Business Pager") || *it == tr("Work Pager") ) | 1646 | if ( *it == tr("Business Pager") || *it == tr("Work Pager") ) |