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) (side-by-side diff)
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 @@
#include <qpe/resource.h>
#include <qpe/config.h>
#include <qpe/qpeapplication.h>
-using namespace Opie::Core;
-using namespace Opie::Ui;
+
/* QT */
#include <qmenubar.h>
@@ -43,6 +42,9 @@ using namespace Opie::Ui;
#include <sys/stat.h>
#include <stdlib.h> //getenv
+using namespace Opie::Core;
+using namespace Opie::Ui;
+
#if QT_VERSION < 300
class QpeEditor : public QMultiLineEdit
{