summaryrefslogtreecommitdiff
path: root/core/pim/osearch/resultitem.cpp
Unidiff
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