summaryrefslogtreecommitdiff
path: root/core/pim/todo/otaskeditor.h
Side-by-side diff
Diffstat (limited to 'core/pim/todo/otaskeditor.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/otaskeditor.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/pim/todo/otaskeditor.h b/core/pim/todo/otaskeditor.h
index 4a00018..65e7bda 100644
--- a/core/pim/todo/otaskeditor.h
+++ b/core/pim/todo/otaskeditor.h
@@ -3,41 +3,42 @@
#include <qdialog.h>
#include <opie2/opimtodo.h>
#include <opie2/otabwidget.h>
#include <opie2/opimrecurrencewidget.h>
+#include <opie2/opimrecurrencewidget.h>
class TaskEditorOverView;
class TaskEditorStatus;
class TaskEditorAlarms;
class QMultiLineEdit;
class OTaskEditor : public QDialog {
Q_OBJECT
public:
OTaskEditor(int cur);
- OTaskEditor( const OPimTodo& todo );
+ OTaskEditor( const Opie::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 OPimTodo& todo );
+ void init( const Opie::OPimTodo& todo );
- OPimTodo todo()const;
+ Opie::OPimTodo todo()const;
private:
- void load( const OPimTodo& );
+ void load( const Opie::OPimTodo& );
void init();
Opie::Ui::OTabWidget *m_tab;
TaskEditorOverView *m_overView;
TaskEditorStatus *m_stat;
TaskEditorAlarms *m_alarm;
TaskEditorAlarms *m_remind;
OPimRecurrenceWidget *m_rec;
- OPimTodo m_todo;
+ Opie::OPimTodo m_todo;
};
#endif