summaryrefslogtreecommitdiff
path: root/core/apps
authorzecke <zecke>2004-09-10 11:41:43 (UTC)
committer zecke <zecke>2004-09-10 11:41:43 (UTC)
commit854e3af27ee7208bbb3620733a24f0214c0b118a (patch) (unidiff)
treee079d95a72e6254b210b0b759b16e941073d7fbe /core/apps
parent77ebc6898d1828b8c728838813c5ddd2bc25a424 (diff)
downloadopie-854e3af27ee7208bbb3620733a24f0214c0b118a.zip
opie-854e3af27ee7208bbb3620733a24f0214c0b118a.tar.gz
opie-854e3af27ee7208bbb3620733a24f0214c0b118a.tar.bz2
Move the using namespace expression below all includes
Diffstat (limited to 'core/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/textedit.cpp6
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>
26using namespace Opie::Core; 26
27using 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
45using namespace Opie::Core;
46using namespace Opie::Ui;
47
46#if QT_VERSION < 300 48#if QT_VERSION < 300
47class QpeEditor : public QMultiLineEdit 49class QpeEditor : public QMultiLineEdit
48{ 50{