summaryrefslogtreecommitdiffabout
path: root/pluginopiekabc/opieaddressee.cpp
Unidiff
Diffstat (limited to 'pluginopiekabc/opieaddressee.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--pluginopiekabc/opieaddressee.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/pluginopiekabc/opieaddressee.cpp b/pluginopiekabc/opieaddressee.cpp
new file mode 100644
index 0000000..3325152
--- a/dev/null
+++ b/pluginopiekabc/opieaddressee.cpp
@@ -0,0 +1,21 @@
1#include <stdio.h>
2#include "opieaddressee.h"
3
4OpieAddressee::OpieAddressee(const OContact & ocontact) {
5 setOContact(ocontact);
6}
7
8OpieAddressee::OpieAddressee() {
9 empty = true;
10}
11
12void 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