-rw-r--r-- | libkdepim/addresseeview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libkdepim/addresseeview.cpp b/libkdepim/addresseeview.cpp index 8fecaf8..5c4f538 100644 --- a/libkdepim/addresseeview.cpp +++ b/libkdepim/addresseeview.cpp | |||
@@ -65,13 +65,13 @@ AddresseeView::AddresseeView( QWidget *parent, const char *name ) | |||
65 | 65 | ||
66 | void AddresseeView::setSource(const QString& n) | 66 | void AddresseeView::setSource(const QString& n) |
67 | { | 67 | { |
68 | qDebug("********AddresseeView::setSource %s", n.latin1()); | 68 | qDebug("********AddresseeView::setSource %s", n.latin1()); |
69 | 69 | ||
70 | if ( n.left( 6 ) == "mailto" ) | 70 | if ( n.left( 6 ) == "mailto" ) |
71 | ExternalAppHandler::instance()->mailToContacts( n.mid(7) ); | 71 | ExternalAppHandler::instance()->mailToOneContact( n.mid(7) ); |
72 | else if ( n.left( 7 ) == "phoneto" ) | 72 | else if ( n.left( 7 ) == "phoneto" ) |
73 | ExternalAppHandler::instance()->callByPhone( n.mid(8) ); | 73 | ExternalAppHandler::instance()->callByPhone( n.mid(8) ); |
74 | else if ( n.left( 5 ) == "faxto" ) | 74 | else if ( n.left( 5 ) == "faxto" ) |
75 | ExternalAppHandler::instance()->callByFax( n.mid(6) ); | 75 | ExternalAppHandler::instance()->callByFax( n.mid(6) ); |
76 | else if ( n.left( 5 ) == "smsto" ) | 76 | else if ( n.left( 5 ) == "smsto" ) |
77 | ExternalAppHandler::instance()->callBySMS( n.mid(6) ); | 77 | ExternalAppHandler::instance()->callBySMS( n.mid(6) ); |
@@ -93,14 +93,14 @@ void AddresseeView::setAddressee( const KABC::Addressee& addr ) | |||
93 | // clear view | 93 | // clear view |
94 | setText( QString::null ); | 94 | setText( QString::null ); |
95 | 95 | ||
96 | if ( mAddressee.isEmpty() ) | 96 | if ( mAddressee.isEmpty() ) |
97 | return; | 97 | return; |
98 | 98 | ||
99 | QString name = ( mAddressee.formattedName().isEmpty() ? | 99 | QString name = ( mAddressee.assembledName().isEmpty() ? |
100 | mAddressee.assembledName() : mAddressee.formattedName() ); | 100 | mAddressee.formattedName() : mAddressee.assembledName() ); |
101 | 101 | ||
102 | QString dynamicPart; | 102 | QString dynamicPart; |
103 | 103 | ||
104 | QStringList emails = mAddressee.emails(); | 104 | QStringList emails = mAddressee.emails(); |
105 | QStringList::ConstIterator emailIt; | 105 | QStringList::ConstIterator emailIt; |
106 | QString type = i18n( "Email" ); | 106 | QString type = i18n( "Email" ); |