summaryrefslogtreecommitdiff
path: root/core/pim/osearch/resultitem.cpp
authortille <tille>2003-05-07 12:36:02 (UTC)
committer tille <tille>2003-05-07 12:36:02 (UTC)
commitb8a79edda20f0b764c8d70fb664f21fb80b61299 (patch) (unidiff)
treed5a939395540c7e77fd0f50be0269c2a4537dba6 /core/pim/osearch/resultitem.cpp
parentf9cc1ea78086e7df714a34412bbccdbd5c31f62f (diff)
downloadopie-b8a79edda20f0b764c8d70fb664f21fb80b61299.zip
opie-b8a79edda20f0b764c8d70fb664f21fb80b61299.tar.gz
opie-b8a79edda20f0b764c8d70fb664f21fb80b61299.tar.bz2
initial import
searches contacts, todos and events not much more yet
Diffstat (limited to 'core/pim/osearch/resultitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/resultitem.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/core/pim/osearch/resultitem.cpp b/core/pim/osearch/resultitem.cpp
new file mode 100644
index 0000000..31114d2
--- a/dev/null
+++ b/core/pim/osearch/resultitem.cpp
@@ -0,0 +1,41 @@
1//
2//
3// C++ Implementation: $MODULE$
4//
5// Description:
6//
7//
8// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
9//
10// Copyright: See COPYING file that comes with this distribution
11//
12//
13#include "resultitem.h"
14
15#include <qmessagebox.h>
16
17#include <opie/otodo.h>
18
19
20ResultItem::ResultItem(OListViewItem* parent)
21: OListViewItem(parent)
22{
23
24}
25
26
27ResultItem::~ResultItem()
28{
29}
30
31void ResultItem::showItem()
32{
33 QMessageBox::warning(0,"Not implemented","show is not yet implemented for this");
34}
35
36
37void ResultItem::editItem()
38{
39 QMessageBox::warning(0,"Not implemented","edit is not yet implemented for this");
40}
41