summaryrefslogtreecommitdiff
path: root/core/pim
authorzecke <zecke>2004-03-14 20:55:00 (UTC)
committer zecke <zecke>2004-03-14 20:55:00 (UTC)
commit594e12002884f0e105eea3cea75504acca5730a2 (patch) (unidiff)
tree658625e7bb36a64af3f2d9632d6ccccbaa18c627 /core/pim
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') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/otaskeditor.cpp2
-rw-r--r--core/pim/todo/otaskeditor.h11
-rw-r--r--core/pim/todo/todoeditor.cpp1
-rw-r--r--core/pim/todo/todoeditor.h6
4 files changed, 12 insertions, 8 deletions
diff --git a/core/pim/todo/otaskeditor.cpp b/core/pim/todo/otaskeditor.cpp
index f0128bc..a8349c1 100644
--- a/core/pim/todo/otaskeditor.cpp
+++ b/core/pim/todo/otaskeditor.cpp
@@ -7,6 +7,8 @@
7#include "otaskeditor.h" 7#include "otaskeditor.h"
8 8
9using namespace Opie::Ui; 9using namespace Opie::Ui;
10using namespace Opie;
11
10OTaskEditor::OTaskEditor(int cur) 12OTaskEditor::OTaskEditor(int cur)
11 : QDialog( 0, 0, TRUE, WStyle_ContextHelp ) { 13 : QDialog( 0, 0, TRUE, WStyle_ContextHelp ) {
12 init(); 14 init();
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 @@
6#include <opie2/opimtodo.h> 6#include <opie2/opimtodo.h>
7#include <opie2/otabwidget.h> 7#include <opie2/otabwidget.h>
8#include <opie2/opimrecurrencewidget.h> 8#include <opie2/opimrecurrencewidget.h>
9#include <opie2/opimrecurrencewidget.h>
9 10
10class TaskEditorOverView; 11class TaskEditorOverView;
11class TaskEditorStatus; 12class TaskEditorStatus;
@@ -16,7 +17,7 @@ class OTaskEditor : public QDialog {
16 Q_OBJECT 17 Q_OBJECT
17public: 18public:
18 OTaskEditor(int cur); 19 OTaskEditor(int cur);
19 OTaskEditor( const OPimTodo& todo ); 20 OTaskEditor( const Opie::OPimTodo& todo );
20 ~OTaskEditor(); 21 ~OTaskEditor();
21 22
22 /* 23 /*
@@ -24,11 +25,11 @@ public:
24 * power to 'preload' the dialog 25 * power to 'preload' the dialog
25 */ 26 */
26 void init( int cur ); 27 void init( int cur );
27 void init( const OPimTodo& todo ); 28 void init( const Opie::OPimTodo& todo );
28 29
29 OPimTodo todo()const; 30 Opie::OPimTodo todo()const;
30private: 31private:
31 void load( const OPimTodo& ); 32 void load( const Opie::OPimTodo& );
32 void init(); 33 void init();
33 34
34 Opie::Ui::OTabWidget *m_tab; 35 Opie::Ui::OTabWidget *m_tab;
@@ -37,7 +38,7 @@ private:
37 TaskEditorAlarms *m_alarm; 38 TaskEditorAlarms *m_alarm;
38 TaskEditorAlarms *m_remind; 39 TaskEditorAlarms *m_remind;
39 OPimRecurrenceWidget *m_rec; 40 OPimRecurrenceWidget *m_rec;
40 OPimTodo m_todo; 41 Opie::OPimTodo m_todo;
41}; 42};
42 43
43#endif 44#endif
diff --git a/core/pim/todo/todoeditor.cpp b/core/pim/todo/todoeditor.cpp
index 879d809..4b5ecb1 100644
--- a/core/pim/todo/todoeditor.cpp
+++ b/core/pim/todo/todoeditor.cpp
@@ -4,6 +4,7 @@
4#include "otaskeditor.h" 4#include "otaskeditor.h"
5#include "todoeditor.h" 5#include "todoeditor.h"
6 6
7using namespace Opie;
7using namespace Todo; 8using namespace Todo;
8 9
9Editor::Editor() { 10Editor::Editor() {
diff --git a/core/pim/todo/todoeditor.h b/core/pim/todo/todoeditor.h
index bcfd205..1ac7f8a 100644
--- a/core/pim/todo/todoeditor.h
+++ b/core/pim/todo/todoeditor.h
@@ -11,10 +11,10 @@ namespace Todo {
11 Editor(); 11 Editor();
12 ~Editor(); 12 ~Editor();
13 13
14 OPimTodo newTodo( int currentCatId, 14 Opie::OPimTodo newTodo( int currentCatId,
15 QWidget* par ); 15 QWidget* par );
16 OPimTodo edit( QWidget* par, 16 Opie::OPimTodo edit( QWidget* par,
17 const OPimTodo& ev = OPimTodo() ); 17 const Opie::OPimTodo& ev = Opie::OPimTodo() );
18 18
19 19
20 bool accepted()const; 20 bool accepted()const;