summaryrefslogtreecommitdiffstats
path: root/tools/qmldebugger/standalone
diff options
context:
space:
mode:
authorWolfgang Beck <wolfgang.beck@nokia.com>2010-02-10 23:41:37 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2010-02-16 00:53:36 (GMT)
commitc6ba330bc92ad8704f53a79f8f79d87c22b1db1e (patch)
treea2a5fe116c6d10ef5239a4352aa0215325500861 /tools/qmldebugger/standalone
parent4460d24950614bd7c60ad7ec14e0418f1b06cc86 (diff)
downloadQt-c6ba330bc92ad8704f53a79f8f79d87c22b1db1e.zip
Qt-c6ba330bc92ad8704f53a79f8f79d87c22b1db1e.tar.gz
Qt-c6ba330bc92ad8704f53a79f8f79d87c22b1db1e.tar.bz2
MOBILITY-404 QS Windows.
Diffstat (limited to 'tools/qmldebugger/standalone')
-rw-r--r--tools/qmldebugger/standalone/engine.cpp2
-rw-r--r--tools/qmldebugger/standalone/expressionquerywidget.cpp4
-rw-r--r--tools/qmldebugger/standalone/main.cpp2
-rw-r--r--tools/qmldebugger/standalone/objecttree.cpp4
-rw-r--r--tools/qmldebugger/standalone/qmldebugger.cpp4
-rw-r--r--tools/qmldebugger/standalone/qmldebugger.h4
6 files changed, 19 insertions, 1 deletions
diff --git a/tools/qmldebugger/standalone/engine.cpp b/tools/qmldebugger/standalone/engine.cpp
index 6cfd82b..acd90f1 100644
--- a/tools/qmldebugger/standalone/engine.cpp
+++ b/tools/qmldebugger/standalone/engine.cpp
@@ -212,8 +212,8 @@ void EnginePane::enginesChanged()
engineSelected(qobject_cast<DebuggerEngineItem*>(m_engineItems.at(0))->engineId());
}
+QT_END_NAMESPACE
#include "engine.moc"
-QT_END_NAMESPACE
diff --git a/tools/qmldebugger/standalone/expressionquerywidget.cpp b/tools/qmldebugger/standalone/expressionquerywidget.cpp
index cd59871..4fea41f 100644
--- a/tools/qmldebugger/standalone/expressionquerywidget.cpp
+++ b/tools/qmldebugger/standalone/expressionquerywidget.cpp
@@ -51,6 +51,8 @@
#include "expressionquerywidget.h"
+QT_BEGIN_NAMESPACE
+
ExpressionQueryWidget::ExpressionQueryWidget(Mode mode, QmlEngineDebug *client, QWidget *parent)
: QWidget(parent),
m_mode(mode),
@@ -274,3 +276,5 @@ bool ExpressionQueryWidget::eventFilter(QObject *obj, QEvent *event)
}
return QWidget::eventFilter(obj, event);
}
+
+QT_END_NAMESPACE
diff --git a/tools/qmldebugger/standalone/main.cpp b/tools/qmldebugger/standalone/main.cpp
index 715837e..c2117f2 100644
--- a/tools/qmldebugger/standalone/main.cpp
+++ b/tools/qmldebugger/standalone/main.cpp
@@ -42,6 +42,8 @@
#include "qmldebugger.h"
+QT_USE_NAMESPACE
+
int main(int argc, char ** argv)
{
QApplication app(argc, argv);
diff --git a/tools/qmldebugger/standalone/objecttree.cpp b/tools/qmldebugger/standalone/objecttree.cpp
index cf467f2..b5bac53 100644
--- a/tools/qmldebugger/standalone/objecttree.cpp
+++ b/tools/qmldebugger/standalone/objecttree.cpp
@@ -52,6 +52,8 @@
Q_DECLARE_METATYPE(QmlDebugObjectReference)
+QT_BEGIN_NAMESPACE
+
ObjectTree::ObjectTree(QmlEngineDebug *client, QWidget *parent)
: QTreeWidget(parent),
m_client(client),
@@ -229,3 +231,5 @@ void ObjectTree::mousePressEvent(QMouseEvent *me)
}
}
}
+
+QT_END_NAMESPACE
diff --git a/tools/qmldebugger/standalone/qmldebugger.cpp b/tools/qmldebugger/standalone/qmldebugger.cpp
index 4d86377..1c1057a 100644
--- a/tools/qmldebugger/standalone/qmldebugger.cpp
+++ b/tools/qmldebugger/standalone/qmldebugger.cpp
@@ -53,6 +53,8 @@
#include "engine.h"
#include "qmldebugger.h"
+QT_BEGIN_NAMESPACE
+
QmlDebugger::QmlDebugger(QWidget *parent)
: QWidget(parent)
{
@@ -179,3 +181,5 @@ void QmlDebugger::disconnectFromHost()
{
client.disconnectFromHost();
}
+
+QT_END_NAMESPACE
diff --git a/tools/qmldebugger/standalone/qmldebugger.h b/tools/qmldebugger/standalone/qmldebugger.h
index da95ef9..3df47d1 100644
--- a/tools/qmldebugger/standalone/qmldebugger.h
+++ b/tools/qmldebugger/standalone/qmldebugger.h
@@ -45,6 +45,8 @@
#include <QtNetwork/qtcpsocket.h>
#include <QtGui/qwidget.h>
+QT_BEGIN_NAMESPACE
+
class QLabel;
class QLineEdit;
class QSpinBox;
@@ -87,4 +89,6 @@ private:
QTabWidget *m_tabs;
};
+QT_END_NAMESPACE
+
#endif