author | zecke <zecke> | 2004-03-14 17:56:46 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-03-14 17:56:46 (UTC) |
commit | 98bbe5561e8e1a862e19a3d0a0d49ed90ef15b54 (patch) (unidiff) | |
tree | 8a440150cc5f66ac5dfce1062b436d9878517779 | |
parent | d69b11f67e3118f86d068c38c422984d754e13cc (diff) | |
download | opie-98bbe5561e8e1a862e19a3d0a0d49ed90ef15b54.zip opie-98bbe5561e8e1a862e19a3d0a0d49ed90ef15b54.tar.gz opie-98bbe5561e8e1a862e19a3d0a0d49ed90ef15b54.tar.bz2 |
ODP and only ODP
-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 1 | ||||
-rw-r--r-- | core/apps/embeddedkonsole/main.cpp | 1 | ||||
-rw-r--r-- | core/apps/helpbrowser/main.cpp | 1 | ||||
-rw-r--r-- | core/apps/qcop/config.in | 4 | ||||
-rw-r--r-- | core/apps/textedit/main.cpp | 1 | ||||
-rw-r--r-- | core/apps/textedit/textedit.cpp | 4 | ||||
-rw-r--r-- | core/apps/textedit/textedit.h | 2 |
7 files changed, 8 insertions, 6 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index 281835e..c5df47f 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp | |||
@@ -49,6 +49,7 @@ | |||
49 | #include "konsole.h" | 49 | #include "konsole.h" |
50 | #include "commandeditdialog.h" | 50 | #include "commandeditdialog.h" |
51 | 51 | ||
52 | using namespace Opie; | ||
52 | class EKNumTabBar : public QTabBar | 53 | class EKNumTabBar : public QTabBar |
53 | { | 54 | { |
54 | public: | 55 | public: |
diff --git a/core/apps/embeddedkonsole/main.cpp b/core/apps/embeddedkonsole/main.cpp index fe30b7e..b456ce2 100644 --- a/core/apps/embeddedkonsole/main.cpp +++ b/core/apps/embeddedkonsole/main.cpp | |||
@@ -25,5 +25,6 @@ | |||
25 | 25 | ||
26 | 26 | ||
27 | /* --| main |------------------------------------------------------ */ | 27 | /* --| main |------------------------------------------------------ */ |
28 | using namespace Opie::Core; | ||
28 | OPIE_EXPORT_APP( OApplicationFactory<Konsole> ) | 29 | OPIE_EXPORT_APP( OApplicationFactory<Konsole> ) |
29 | 30 | ||
diff --git a/core/apps/helpbrowser/main.cpp b/core/apps/helpbrowser/main.cpp index c726cd3..66241ae 100644 --- a/core/apps/helpbrowser/main.cpp +++ b/core/apps/helpbrowser/main.cpp | |||
@@ -22,4 +22,5 @@ | |||
22 | 22 | ||
23 | #include <opie2/oapplicationfactory.h> | 23 | #include <opie2/oapplicationfactory.h> |
24 | 24 | ||
25 | using namespace Opie::Core; | ||
25 | OPIE_EXPORT_APP( OApplicationFactory<HelpBrowser> ) | 26 | OPIE_EXPORT_APP( OApplicationFactory<HelpBrowser> ) |
diff --git a/core/apps/qcop/config.in b/core/apps/qcop/config.in index 2bd1a73..f99ff03 100644 --- a/core/apps/qcop/config.in +++ b/core/apps/qcop/config.in | |||
@@ -1,4 +1,4 @@ | |||
1 | config QCOP | 1 | config QCOP |
2 | boolean "opie-qcop (inter-application communication daemon)" | 2 | boolean "opie-qcop (inter-application communication client)" |
3 | default "y" | 3 | default "y" |
4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE | 4 | depends ( LIBQPE || LIBQPE-X11 ) |
diff --git a/core/apps/textedit/main.cpp b/core/apps/textedit/main.cpp index 9aee47b..d05d6d6 100644 --- a/core/apps/textedit/main.cpp +++ b/core/apps/textedit/main.cpp | |||
@@ -22,4 +22,5 @@ | |||
22 | 22 | ||
23 | #include <opie2/oapplicationfactory.h> | 23 | #include <opie2/oapplicationfactory.h> |
24 | 24 | ||
25 | using namespace Opie::Core; | ||
25 | OPIE_EXPORT_APP( OApplicationFactory<TextEdit> ) | 26 | OPIE_EXPORT_APP( OApplicationFactory<TextEdit> ) |
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index b54da34..5bb65a9 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp | |||
@@ -37,9 +37,7 @@ | |||
37 | #include <sys/stat.h> | 37 | #include <sys/stat.h> |
38 | #include <stdlib.h> //getenv | 38 | #include <stdlib.h> //getenv |
39 | 39 | ||
40 | using Opie::OFileDialog; | 40 | using namespace Opie::Ui; |
41 | using Opie::OFileSelector; | ||
42 | using Opie::OFontSelector; | ||
43 | 41 | ||
44 | #if QT_VERSION < 300 | 42 | #if QT_VERSION < 300 |
45 | 43 | ||
diff --git a/core/apps/textedit/textedit.h b/core/apps/textedit/textedit.h index 34f3617..6cc693f 100644 --- a/core/apps/textedit/textedit.h +++ b/core/apps/textedit/textedit.h | |||
@@ -30,7 +30,7 @@ | |||
30 | #include <qpe/filemanager.h> | 30 | #include <qpe/filemanager.h> |
31 | #include <qpe/qcopenvelope_qws.h> | 31 | #include <qpe/qcopenvelope_qws.h> |
32 | 32 | ||
33 | //#include <opie/ofileselector.h> | 33 | //#include <opie2/ofileselector.h> |
34 | 34 | ||
35 | #include <qmainwindow.h> | 35 | #include <qmainwindow.h> |
36 | #include <qmultilineedit.h> | 36 | #include <qmultilineedit.h> |