author | zecke <zecke> | 2004-03-14 19:20:59 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-03-14 19:20:59 (UTC) |
commit | cbb87c7c24dfe46462602c73b10bd76ce81a3baf (patch) (side-by-side diff) | |
tree | ff803045e142f3a5013895be2623a4b5c76531fb | |
parent | 601330a1173afbc7736d103a584b8bde20646dee (diff) | |
download | opie-cbb87c7c24dfe46462602c73b10bd76ce81a3baf.zip opie-cbb87c7c24dfe46462602c73b10bd76ce81a3baf.tar.gz opie-cbb87c7c24dfe46462602c73b10bd76ce81a3baf.tar.bz2 |
Make use of ODP namespace
-rw-r--r-- | core/pim/todo/mainwindow.cpp | 4 | ||||
-rw-r--r-- | core/pim/todo/mainwindow.h | 4 | ||||
-rw-r--r-- | core/pim/todo/otaskeditor.cpp | 1 | ||||
-rw-r--r-- | core/pim/todo/otaskeditor.h | 2 | ||||
-rw-r--r-- | core/pim/todo/quickeditimpl.cpp | 3 | ||||
-rw-r--r-- | core/pim/todo/taskeditoralarms.cpp | 1 |
6 files changed, 10 insertions, 5 deletions
diff --git a/core/pim/todo/mainwindow.cpp b/core/pim/todo/mainwindow.cpp index c2f422d..f0642c4 100644 --- a/core/pim/todo/mainwindow.cpp +++ b/core/pim/todo/mainwindow.cpp @@ -60,4 +60,6 @@ +using namespace Opie::Core; OPIE_EXPORT_APP( OApplicationFactory<Todo::MainWindow> ) + using namespace Opie; using namespace Todo; @@ -222,3 +224,3 @@ void MainWindow::initUI() { - m_stack = new OWidgetStack(this, "main stack"); + m_stack = new Opie::Ui::OWidgetStack(this, "main stack"); diff --git a/core/pim/todo/mainwindow.h b/core/pim/todo/mainwindow.h index b35a42b..f0d6a42 100644 --- a/core/pim/todo/mainwindow.h +++ b/core/pim/todo/mainwindow.h @@ -64,3 +64,3 @@ namespace Todo { public: - /* OApplicationFactory application Name */ + /* Opie::Core::OApplicationFactory application Name */ static QString appName() { return QString::fromLatin1("todolist"); } @@ -144,3 +144,3 @@ private slots: *m_effectiveAction; - Opie::OWidgetStack *m_stack; + Opie::Ui::OWidgetStack *m_stack; QPopupMenu* m_catMenu, diff --git a/core/pim/todo/otaskeditor.cpp b/core/pim/todo/otaskeditor.cpp index d1e50f7..f0128bc 100644 --- a/core/pim/todo/otaskeditor.cpp +++ b/core/pim/todo/otaskeditor.cpp @@ -8,2 +8,3 @@ +using namespace Opie::Ui; OTaskEditor::OTaskEditor(int cur) diff --git a/core/pim/todo/otaskeditor.h b/core/pim/todo/otaskeditor.h index 7068df8..4a00018 100644 --- a/core/pim/todo/otaskeditor.h +++ b/core/pim/todo/otaskeditor.h @@ -33,3 +33,3 @@ private: - OTabWidget *m_tab; + Opie::Ui::OTabWidget *m_tab; TaskEditorOverView *m_overView; diff --git a/core/pim/todo/quickeditimpl.cpp b/core/pim/todo/quickeditimpl.cpp index 94ae97e..90ad19e 100644 --- a/core/pim/todo/quickeditimpl.cpp +++ b/core/pim/todo/quickeditimpl.cpp @@ -12,2 +12,3 @@ + QuickEditImpl::QuickEditImpl( QWidget* parent, bool visible ) @@ -23,3 +24,3 @@ QuickEditImpl::QuickEditImpl( QWidget* parent, bool visible ) - m_lbl = new Opie::OClickableLabel( this ); + m_lbl = new Opie::Ui::OClickableLabel( this ); m_lbl->setMinimumWidth( 15 ); diff --git a/core/pim/todo/taskeditoralarms.cpp b/core/pim/todo/taskeditoralarms.cpp index a512fb0..62fc600 100644 --- a/core/pim/todo/taskeditoralarms.cpp +++ b/core/pim/todo/taskeditoralarms.cpp @@ -40,2 +40,3 @@ +using namespace Opie::Ui; class AlarmItem : public QListViewItem { |