summaryrefslogtreecommitdiff
path: root/core/pim/osearch/todoitem.h
Side-by-side diff
Diffstat (limited to 'core/pim/osearch/todoitem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/todoitem.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/core/pim/osearch/todoitem.h b/core/pim/osearch/todoitem.h
index 6f34915..9dfd4ff 100644
--- a/core/pim/osearch/todoitem.h
+++ b/core/pim/osearch/todoitem.h
@@ -1,38 +1,37 @@
//
//
// C++ Interface: $MODULE$
//
-// Description:
+// Description:
//
//
// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef TODOITEM_H
#define TODOITEM_H
#include "resultitem.h"
class OTodo;
/**
@author Patrick S. Vogt
*/
class TodoItem : public ResultItem
{
public:
TodoItem(OListViewItem* parent, OTodo *todo);
~TodoItem();
- virtual void expand();
virtual QString toRichText();
- virtual void showItem();
- virtual void editItem();
+ virtual void action( int );
+ virtual QIntDict<QString> actions();
private:
OTodo *_todo;
};
#endif