summaryrefslogtreecommitdiff
path: root/core/pim/osearch/contactitem.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/osearch/contactitem.cpp') (more/less context) (show 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
@@ -10,12 +10,13 @@
// Copyright: See COPYING file that comes with this distribution
//
//
#include "contactitem.h"
#include <opie/ocontact.h>
+#include <qpe/qcopenvelope_qws.h>
ContactItem::ContactItem(OListViewItem* parent, OContact *contact)
: ResultItem(parent)
{
_contact = contact;
setText(0, _contact->toShortText());
@@ -30,6 +31,21 @@ ContactItem::~ContactItem()
QString ContactItem::toRichText()
{
return _contact->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();
+}
+