-rw-r--r-- | core/pim/osearch/contactitem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/osearch/contactitem.cpp b/core/pim/osearch/contactitem.cpp index a25ac23..29d81be 100644 --- a/core/pim/osearch/contactitem.cpp +++ b/core/pim/osearch/contactitem.cpp @@ -8,44 +8,44 @@ // Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003 // // 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()); } ContactItem::~ContactItem() { delete _contact; } QString ContactItem::toRichText() { return _contact->toRichText(); } void ContactItem::editItem() { - QCopEnvelope e("QPE/Application/addressbook", "editEvent(int)"); + QCopEnvelope e("QPE/Application/addressbook", "edit(int)"); // QCopEnvelope e("QPE/Addressbook", "editEvent(int)"); e << _contact->uid(); } void ContactItem::showItem() { - QCopEnvelope e("QPE/Application/addressbook", "editEvent(int)"); + QCopEnvelope e("QPE/Application/addressbook", "show(int)"); // QCopEnvelope e("QPE/Addressbook", "viewDefault(QDate)"); e << _contact->uid(); } |