summaryrefslogtreecommitdiff
path: root/core/pim/osearch/resultitem.cpp
Side-by-side diff
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 @@
+//
+//
+// C++ Implementation: $MODULE$
+//
+// Description:
+//
+//
+// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#include "resultitem.h"
+
+#include <qmessagebox.h>
+
+#include <opie/otodo.h>
+
+
+ResultItem::ResultItem(OListViewItem* parent)
+: OListViewItem(parent)
+{
+
+}
+
+
+ResultItem::~ResultItem()
+{
+}
+
+void ResultItem::showItem()
+{
+ QMessageBox::warning(0,"Not implemented","show is not yet implemented for this");
+}
+
+
+void ResultItem::editItem()
+{
+ QMessageBox::warning(0,"Not implemented","edit is not yet implemented for this");
+}
+