author | zecke <zecke> | 2004-09-10 11:41:43 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-09-10 11:41:43 (UTC) |
commit | 854e3af27ee7208bbb3620733a24f0214c0b118a (patch) (unidiff) | |
tree | e079d95a72e6254b210b0b759b16e941073d7fbe | |
parent | 77ebc6898d1828b8c728838813c5ddd2bc25a424 (diff) | |
download | opie-854e3af27ee7208bbb3620733a24f0214c0b118a.zip opie-854e3af27ee7208bbb3620733a24f0214c0b118a.tar.gz opie-854e3af27ee7208bbb3620733a24f0214c0b118a.tar.bz2 |
Move the using namespace expression below all includes
-rw-r--r-- | core/apps/textedit/textedit.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index c9178a5..086fdb6 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp | |||
@@ -23,8 +23,7 @@ | |||
23 | #include <qpe/resource.h> | 23 | #include <qpe/resource.h> |
24 | #include <qpe/config.h> | 24 | #include <qpe/config.h> |
25 | #include <qpe/qpeapplication.h> | 25 | #include <qpe/qpeapplication.h> |
26 | using namespace Opie::Core; | 26 | |
27 | using namespace Opie::Ui; | ||
28 | 27 | ||
29 | /* QT */ | 28 | /* QT */ |
30 | #include <qmenubar.h> | 29 | #include <qmenubar.h> |
@@ -43,6 +42,9 @@ using namespace Opie::Ui; | |||
43 | #include <sys/stat.h> | 42 | #include <sys/stat.h> |
44 | #include <stdlib.h> //getenv | 43 | #include <stdlib.h> //getenv |
45 | 44 | ||
45 | using namespace Opie::Core; | ||
46 | using namespace Opie::Ui; | ||
47 | |||
46 | #if QT_VERSION < 300 | 48 | #if QT_VERSION < 300 |
47 | class QpeEditor : public QMultiLineEdit | 49 | class QpeEditor : public QMultiLineEdit |
48 | { | 50 | { |