summaryrefslogtreecommitdiff
path: root/core/pim/todo/otaskeditor.h
authorzecke <zecke>2004-03-14 20:55:00 (UTC)
committer zecke <zecke>2004-03-14 20:55:00 (UTC)
commit594e12002884f0e105eea3cea75504acca5730a2 (patch) (side-by-side diff)
tree658625e7bb36a64af3f2d9632d6ccccbaa18c627 /core/pim/todo/otaskeditor.h
parentb7362708c9d5a1765aa22fdcc87a9b3009cda6b9 (diff)
downloadopie-594e12002884f0e105eea3cea75504acca5730a2.zip
opie-594e12002884f0e105eea3cea75504acca5730a2.tar.gz
opie-594e12002884f0e105eea3cea75504acca5730a2.tar.bz2
Now that using namespace if out of the header fixup todo
Diffstat (limited to 'core/pim/todo/otaskeditor.h') (more/less context) (show 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
@@ -6,6 +6,7 @@
#include <opie2/opimtodo.h>
#include <opie2/otabwidget.h>
#include <opie2/opimrecurrencewidget.h>
+#include <opie2/opimrecurrencewidget.h>
class TaskEditorOverView;
class TaskEditorStatus;
@@ -16,7 +17,7 @@ class OTaskEditor : public QDialog {
Q_OBJECT
public:
OTaskEditor(int cur);
- OTaskEditor( const OPimTodo& todo );
+ OTaskEditor( const Opie::OPimTodo& todo );
~OTaskEditor();
/*
@@ -24,11 +25,11 @@ public:
* 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;
@@ -37,7 +38,7 @@ private:
TaskEditorAlarms *m_alarm;
TaskEditorAlarms *m_remind;
OPimRecurrenceWidget *m_rec;
- OPimTodo m_todo;
+ Opie::OPimTodo m_todo;
};
#endif