From 89b7c6cb8a9bee53479a246efffbc916ba6d2c9c Mon Sep 17 00:00:00 2001
From: Erik Verbruggen <erik.verbruggen@nokia.com>
Date: Thu, 17 Sep 2009 13:03:45 +0200
Subject: [PATCH] ifdef cleanup.

---
 src/plugins/duieditor/parser/qmljsglobal_p.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/plugins/duieditor/parser/qmljsglobal_p.h b/src/plugins/duieditor/parser/qmljsglobal_p.h
index 675c67bb0d7..99bb19fd248 100644
--- a/src/plugins/duieditor/parser/qmljsglobal_p.h
+++ b/src/plugins/duieditor/parser/qmljsglobal_p.h
@@ -3,12 +3,12 @@
 
 #include <QtCore/qglobal.h>
 
-#ifndef QT_CREATOR
-#define QT_QML_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
-#define QT_QML_END_NAMESPACE QT_END_NAMESPACE
-#else // !QT_CREATOR
+#ifdef QT_CREATOR
 #define QT_QML_BEGIN_NAMESPACE
 #define QT_QML_END_NAMESPACE
+#else // !QT_CREATOR
+#define QT_QML_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
+#define QT_QML_END_NAMESPACE QT_END_NAMESPACE
 #endif // QT_CREATOR
 
 #endif // QMLJSGLOBAL_P_H
-- 
GitLab