summaryrefslogtreecommitdiff
path: root/core/pim/osearch/contactitem.cpp
Side-by-side diff
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 @@
#include <opie/ocontact.h>
+#include <qpe/qcopenvelope_qws.h>
@@ -35 +36,16 @@ QString ContactItem::toRichText()
+
+void ContactItem::editItem()
+{
+ QCopEnvelope e("QPE/Application/addressbook", "editEvent(int)");
+// QCopEnvelope e("QPE/Addressbook", "editEvent(int)");
+ e << _contact->uid();
+}
+
+void ContactItem::showItem()
+{
+ QCopEnvelope e("QPE/Application/addressbook", "editEvent(int)");
+// QCopEnvelope e("QPE/Addressbook", "viewDefault(QDate)");
+ e << _contact->uid();
+}
+