summaryrefslogtreecommitdiffabout
path: root/pluginopiekabc/opieaddressee.cpp
authorulf69 <ulf69>2004-08-06 18:24:25 (UTC)
committer ulf69 <ulf69>2004-08-06 18:24:25 (UTC)
commit79bb2950bd27b5e138d2fd7afe2ab37b6b036cae (patch) (unidiff)
treeabd40f9f1f6cb2a73e2410e67c7889efb855c85f /pluginopiekabc/opieaddressee.cpp
parentaeb62a1841266e1bec8250a1af9ec3231eb25655 (diff)
downloadkdepimpi-79bb2950bd27b5e138d2fd7afe2ab37b6b036cae.zip
kdepimpi-79bb2950bd27b5e138d2fd7afe2ab37b6b036cae.tar.gz
kdepimpi-79bb2950bd27b5e138d2fd7afe2ab37b6b036cae.tar.bz2
functionality now handled by kabc resourceadapter
Diffstat (limited to 'pluginopiekabc/opieaddressee.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--pluginopiekabc/opieaddressee.cpp21
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
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