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 | |||