Diffstat (limited to 'pluginopiekabc/opieaddressee.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | pluginopiekabc/opieaddressee.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/pluginopiekabc/opieaddressee.cpp b/pluginopiekabc/opieaddressee.cpp deleted file mode 100644 index 3325152..0000000 --- a/pluginopiekabc/opieaddressee.cpp +++ b/dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | #include <stdio.h> | ||
2 | #include "opieaddressee.h" | ||
3 | |||
4 | OpieAddressee::OpieAddressee(const OContact & ocontact) { | ||
5 | setOContact(ocontact); | ||
6 | } | ||
7 | |||
8 | OpieAddressee::OpieAddressee() { | ||
9 | empty = true; | ||
10 | } | ||
11 | |||
12 | void OpieAddressee::setOContact(const OContact & ocontact) { | ||
13 | contact = ocontact; | ||
14 | QString id; | ||
15 | id.setNum(contact.uid()); | ||
16 | fName = contact.lastName() + ", " + contact.firstName(); | ||
17 | rName = contact.fullName(); | ||
18 | pEmail = contact.defaultEmail(); | ||
19 | empty = false; | ||
20 | } | ||
21 | |||