author | eilers <eilers> | 2003-05-09 13:32:40 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-05-09 13:32:40 (UTC) |
commit | b398b872aea2b00ce27536c1894babbcd76c8703 (patch) (side-by-side diff) | |
tree | a580632bdac5ce03b21f8dff029644e8f41c1266 /core | |
parent | d371c94c81f9f0e961aa7e47a27c323215709e8a (diff) | |
download | opie-b398b872aea2b00ce27536c1894babbcd76c8703.zip opie-b398b872aea2b00ce27536c1894babbcd76c8703.tar.gz opie-b398b872aea2b00ce27536c1894babbcd76c8703.tar.bz2 |
edit was executed even if I pressed show.. Rename the call to be compatible
to omainwindow..
-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 @@ -24,28 +24,28 @@ ContactItem::ContactItem(OListViewItem* parent, OContact *contact) 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(); } |