summaryrefslogtreecommitdiff
path: root/core/pim/osearch/contactitem.cpp
Unidiff
Diffstat (limited to 'core/pim/osearch/contactitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/contactitem.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/core/pim/osearch/contactitem.cpp b/core/pim/osearch/contactitem.cpp
index 86879aa..a25ac23 100644
--- a/core/pim/osearch/contactitem.cpp
+++ b/core/pim/osearch/contactitem.cpp
@@ -15,2 +15,3 @@
15#include <opie/ocontact.h> 15#include <opie/ocontact.h>
16#include <qpe/qcopenvelope_qws.h>
16 17
@@ -35 +36,16 @@ QString ContactItem::toRichText()
35 36
37
38void ContactItem::editItem()
39{
40 QCopEnvelope e("QPE/Application/addressbook", "editEvent(int)");
41 //QCopEnvelope e("QPE/Addressbook", "editEvent(int)");
42 e << _contact->uid();
43}
44
45void ContactItem::showItem()
46{
47 QCopEnvelope e("QPE/Application/addressbook", "editEvent(int)");
48 //QCopEnvelope e("QPE/Addressbook", "viewDefault(QDate)");
49 e << _contact->uid();
50}
51