author | zecke <zecke> | 2004-03-14 20:23:19 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-03-14 20:23:19 (UTC) |
commit | 740fd610a576b1a1afe95a4736c7c8c0db6ee1df (patch) (unidiff) | |
tree | 71c1e3ecc9882bebd5ab6c8ca3438f36a5c7c092 | |
parent | 18dc118b49dbfb2c4d986538002a1c8f771b33ed (diff) | |
download | opie-740fd610a576b1a1afe95a4736c7c8c0db6ee1df.zip opie-740fd610a576b1a1afe95a4736c7c8c0db6ee1df.tar.gz opie-740fd610a576b1a1afe95a4736c7c8c0db6ee1df.tar.bz2 |
Compile fixes
5 files changed, 11 insertions, 9 deletions
diff --git a/core/pim/today/plugins/datebook/config.in b/core/pim/today/plugins/datebook/config.in index 7a14438..413e0b8 100644 --- a/core/pim/today/plugins/datebook/config.in +++ b/core/pim/today/plugins/datebook/config.in | |||
@@ -1,4 +1,4 @@ | |||
1 | config TODAY_DATEBOOK | 1 | config TODAY_DATEBOOK |
2 | boolean "datebook" | 2 | boolean "datebook" |
3 | default "y" | 3 | default "y" |
4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE | 4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIEUI2 && LIBOPIECORE2 |
diff --git a/core/pim/today/plugins/datebook/datebookevent.cpp b/core/pim/today/plugins/datebook/datebookevent.cpp index 9a820f2..f5b0d0a 100644 --- a/core/pim/today/plugins/datebook/datebookevent.cpp +++ b/core/pim/today/plugins/datebook/datebookevent.cpp | |||
@@ -22,7 +22,8 @@ | |||
22 | 22 | ||
23 | #include <opie2/odevice.h> | 23 | #include <opie2/odevice.h> |
24 | 24 | ||
25 | using namespace Opie; | 25 | using namespace Opie::Ui; |
26 | using namespace Opie::Core; | ||
26 | 27 | ||
27 | DateBookEvent::DateBookEvent(const EffectiveEvent &ev, | 28 | DateBookEvent::DateBookEvent(const EffectiveEvent &ev, |
28 | QWidget* parent, | 29 | QWidget* parent, |
diff --git a/core/pim/today/plugins/datebook/datebookevent.h b/core/pim/today/plugins/datebook/datebookevent.h index e2ee077..973efe4 100644 --- a/core/pim/today/plugins/datebook/datebookevent.h +++ b/core/pim/today/plugins/datebook/datebookevent.h | |||
@@ -21,9 +21,8 @@ | |||
21 | 21 | ||
22 | #include <qpe/datebookdb.h> | 22 | #include <qpe/datebookdb.h> |
23 | 23 | ||
24 | using namespace Opie; | ||
25 | 24 | ||
26 | class DateBookEvent: public OClickableLabel { | 25 | class DateBookEvent: public Opie::Ui::OClickableLabel { |
27 | 26 | ||
28 | Q_OBJECT | 27 | Q_OBJECT |
29 | 28 | ||
diff --git a/core/pim/today/plugins/todolist/todopluginwidget.cpp b/core/pim/today/plugins/todolist/todopluginwidget.cpp index 567c70f..7ce703e 100644 --- a/core/pim/today/plugins/todolist/todopluginwidget.cpp +++ b/core/pim/today/plugins/todolist/todopluginwidget.cpp | |||
@@ -19,6 +19,9 @@ | |||
19 | #include <qpe/config.h> | 19 | #include <qpe/config.h> |
20 | #include <qpe/qcopenvelope_qws.h> | 20 | #include <qpe/qcopenvelope_qws.h> |
21 | 21 | ||
22 | using namespace Opie::Ui; | ||
23 | using namespace Opie; | ||
24 | |||
22 | TodolistPluginWidget::TodolistPluginWidget( QWidget *parent, const char* name ) | 25 | TodolistPluginWidget::TodolistPluginWidget( QWidget *parent, const char* name ) |
23 | : QWidget( parent, name ) { | 26 | : QWidget( parent, name ) { |
24 | 27 | ||
diff --git a/core/pim/today/plugins/todolist/todopluginwidget.h b/core/pim/today/plugins/todolist/todopluginwidget.h index a020cf4..86a9f27 100644 --- a/core/pim/today/plugins/todolist/todopluginwidget.h +++ b/core/pim/today/plugins/todolist/todopluginwidget.h | |||
@@ -22,7 +22,6 @@ | |||
22 | #include <opie2/otodoaccess.h> | 22 | #include <opie2/otodoaccess.h> |
23 | #include <opie2/oclickablelabel.h> | 23 | #include <opie2/oclickablelabel.h> |
24 | 24 | ||
25 | using namespace Opie; | ||
26 | 25 | ||
27 | class TodolistPluginWidget : public QWidget { | 26 | class TodolistPluginWidget : public QWidget { |
28 | 27 | ||
@@ -39,12 +38,12 @@ protected slots: | |||
39 | void startTodolist(); | 38 | void startTodolist(); |
40 | 39 | ||
41 | private: | 40 | private: |
42 | OClickableLabel *todoLabel; | 41 | Opie::Ui::OClickableLabel *todoLabel; |
43 | QVBoxLayout* layoutTodo; | 42 | QVBoxLayout* layoutTodo; |
44 | 43 | ||
45 | OPimTodoAccess *todo; | 44 | Opie::OPimTodoAccess *todo; |
46 | OPimTodoAccess::List m_list; | 45 | Opie::OPimTodoAccess::List m_list; |
47 | OPimTodoAccess::List::Iterator m_it; | 46 | Opie::OPimTodoAccess::List::Iterator m_it; |
48 | 47 | ||
49 | void readConfig(); | 48 | void readConfig(); |
50 | void getTodo(); | 49 | void getTodo(); |