author | ulf69 <ulf69> | 2004-08-06 18:27:05 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-06 18:27:05 (UTC) |
commit | 555e6179368fb2446c802041a01db4c9dad7db8f (patch) (unidiff) | |
tree | 92f270227cebb3e44420c9d73dc72500f8b7e4c8 /pluginqtopiakabc/qtopiaaddressee.cpp | |
parent | 79bb2950bd27b5e138d2fd7afe2ab37b6b036cae (diff) | |
download | kdepimpi-555e6179368fb2446c802041a01db4c9dad7db8f.zip kdepimpi-555e6179368fb2446c802041a01db4c9dad7db8f.tar.gz kdepimpi-555e6179368fb2446c802041a01db4c9dad7db8f.tar.bz2 |
functionality now implemented by kabc resourceadapter
Diffstat (limited to 'pluginqtopiakabc/qtopiaaddressee.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | pluginqtopiakabc/qtopiaaddressee.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/pluginqtopiakabc/qtopiaaddressee.cpp b/pluginqtopiakabc/qtopiaaddressee.cpp deleted file mode 100644 index 3fe85e5..0000000 --- a/pluginqtopiakabc/qtopiaaddressee.cpp +++ b/dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | #include "qtopiaaddressee.h" | ||
2 | |||
3 | QtopiaAddressee::QtopiaAddressee(const PimContact & pimContact) { | ||
4 | setPimContact(pimContact); | ||
5 | } | ||
6 | |||
7 | QtopiaAddressee::QtopiaAddressee() { | ||
8 | empty = true; | ||
9 | } | ||
10 | |||
11 | void QtopiaAddressee::setPimContact(const PimContact &pimContact) { | ||
12 | id = pimContact.defaultEmail(); | ||
13 | fName = pimContact.lastName() + ", " + pimContact.firstName(); | ||
14 | rName = pimContact.fullName(); | ||
15 | pEmail = pimContact.defaultEmail(); | ||
16 | empty = false; | ||
17 | mails.clear(); | ||
18 | mails = pimContact.emailList(); | ||
19 | } | ||
20 | |||