-rw-r--r-- | noncore/net/mail/addresspicker.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/net/mail/addresspicker.cpp b/noncore/net/mail/addresspicker.cpp index 8cdabde..35f9cd4 100644 --- a/noncore/net/mail/addresspicker.cpp +++ b/noncore/net/mail/addresspicker.cpp | |||
@@ -4,5 +4,5 @@ | |||
4 | /* OPIE */ | 4 | /* OPIE */ |
5 | #include <opie2/ocontactaccess.h> | 5 | #include <opie2/ocontactaccess.h> |
6 | #include <opie2/ocontact.h> | 6 | #include <opie2/opimcontact.h> |
7 | #include <qpe/resource.h> | 7 | #include <qpe/resource.h> |
8 | #include <qpe/qpeapplication.h> | 8 | #include <qpe/qpeapplication.h> |
@@ -26,13 +26,13 @@ AddressPicker::AddressPicker( QWidget *parent, const char *name, bool modal, WFl | |||
26 | connect(okButton, SIGNAL(clicked()), SLOT(accept())); | 26 | connect(okButton, SIGNAL(clicked()), SLOT(accept())); |
27 | connect(cancelButton, SIGNAL(clicked()), SLOT(close())); | 27 | connect(cancelButton, SIGNAL(clicked()), SLOT(close())); |
28 | Opie::OContactAccess::List::Iterator it; | 28 | Opie::OPimContactAccess::List::Iterator it; |
29 | 29 | ||
30 | QString lineEmail, lineName, contactLine; | 30 | QString lineEmail, lineName, contactLine; |
31 | /* what name has to set here???? */ | 31 | /* what name has to set here???? */ |
32 | Opie::OContactAccess m_contactdb("opiemail"); | 32 | Opie::OPimContactAccess m_contactdb("opiemail"); |
33 | 33 | ||
34 | QStringList mails; | 34 | QStringList mails; |
35 | QString pre,suf; | 35 | QString pre,suf; |
36 | Opie::OContactAccess::List m_list = m_contactdb.sorted( true, 0, 0, 0 ); | 36 | Opie::OPimContactAccess::List m_list = m_contactdb.sorted( true, 0, 0, 0 ); |
37 | for ( it = m_list.begin(); it != m_list.end(); ++it ) | 37 | for ( it = m_list.begin(); it != m_list.end(); ++it ) |
38 | { | 38 | { |