summaryrefslogtreecommitdiff
path: root/core/pim/osearch/contactitem.cpp
authortille <tille>2003-05-10 12:37:35 (UTC)
committer tille <tille>2003-05-10 12:37:35 (UTC)
commit882b5190d02c33aa8c893e8aa54bf3d38ac255c8 (patch) (unidiff)
treec79bf2a664d780013b685dd9617829cecdea3561 /core/pim/osearch/contactitem.cpp
parent65efa1e8a846f92580155d6ce7e28fe9b7ae19d2 (diff)
downloadopie-882b5190d02c33aa8c893e8aa54bf3d38ac255c8.zip
opie-882b5190d02c33aa8c893e8aa54bf3d38ac255c8.tar.gz
opie-882b5190d02c33aa8c893e8aa54bf3d38ac255c8.tar.bz2
clean up
Diffstat (limited to 'core/pim/osearch/contactitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/contactitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/osearch/contactitem.cpp b/core/pim/osearch/contactitem.cpp
index 29d81be..788a415 100644
--- a/core/pim/osearch/contactitem.cpp
+++ b/core/pim/osearch/contactitem.cpp
@@ -38,14 +38,14 @@ QString ContactItem::toRichText()
38void ContactItem::editItem() 38void ContactItem::editItem()
39{ 39{
40 QCopEnvelope e("QPE/Application/addressbook", "edit(int)"); 40 QCopEnvelope e("QPE/Application/addressbook", "edit(int)");
41 //QCopEnvelope e("QPE/Addressbook", "editEvent(int)"); 41 //QCopEnvelope e("QPE/Addressbook", "edit(int)");
42 e << _contact->uid(); 42 e << _contact->uid();
43} 43}
44 44
45void ContactItem::showItem() 45void ContactItem::showItem()
46{ 46{
47 QCopEnvelope e("QPE/Application/addressbook", "show(int)"); 47 QCopEnvelope e("QPE/Application/addressbook", "show(int)");
48 //QCopEnvelope e("QPE/Addressbook", "viewDefault(QDate)"); 48 //QCopEnvelope e("QPE/Addressbook", "show(int)");
49 e << _contact->uid(); 49 e << _contact->uid();
50} 50}
51 51