summaryrefslogtreecommitdiff
path: root/core/pim/todo/otaskeditor.h
authordrw <drw>2004-02-25 16:32:24 (UTC)
committer drw <drw>2004-02-25 16:32:24 (UTC)
commitbea97f98bfb31994425908e7ce982b2450696706 (patch) (side-by-side diff)
tree2f2bc2f55d4656b7c63a06cdce6bc35346d9388f /core/pim/todo/otaskeditor.h
parentf84a46fce6c1b7702ec1eaebd40e363b67253649 (diff)
downloadopie-bea97f98bfb31994425908e7ce982b2450696706.zip
opie-bea97f98bfb31994425908e7ce982b2450696706.tar.gz
opie-bea97f98bfb31994425908e7ce982b2450696706.tar.bz2
Todo: libopie->libopie2
Diffstat (limited to 'core/pim/todo/otaskeditor.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/otaskeditor.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/core/pim/todo/otaskeditor.h b/core/pim/todo/otaskeditor.h
index 2daae52..7068df8 100644
--- a/core/pim/todo/otaskeditor.h
+++ b/core/pim/todo/otaskeditor.h
@@ -1,43 +1,43 @@
#ifndef OPIE_TASK_EDITOR_H
#define OPIE_TASK_EDITOR_H
#include <qdialog.h>
-#include <opie/otodo.h>
-#include <opie/otabwidget.h>
+#include <opie2/opimtodo.h>
+#include <opie2/otabwidget.h>
+#include <opie2/opimrecurrencewidget.h>
class TaskEditorOverView;
class TaskEditorStatus;
class TaskEditorAlarms;
-class ORecurranceWidget;
class QMultiLineEdit;
class OTaskEditor : public QDialog {
Q_OBJECT
public:
OTaskEditor(int cur);
- OTaskEditor( const OTodo& todo );
+ OTaskEditor( const OPimTodo& todo );
~OTaskEditor();
/*
* same as the c'tor but this gives us the
* power to 'preload' the dialog
*/
void init( int cur );
- void init( const OTodo& todo );
+ void init( const OPimTodo& todo );
- OTodo todo()const;
+ OPimTodo todo()const;
private:
- void load( const OTodo& );
+ void load( const OPimTodo& );
void init();
OTabWidget *m_tab;
TaskEditorOverView *m_overView;
TaskEditorStatus *m_stat;
TaskEditorAlarms *m_alarm;
TaskEditorAlarms *m_remind;
- ORecurranceWidget *m_rec;
- OTodo m_todo;
+ OPimRecurrenceWidget *m_rec;
+ OPimTodo m_todo;
};
#endif