aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qpacketprotocol
diff options
context:
space:
mode:
authorAurindam Jana <aurindam.jana@nokia.com>2012-03-06 14:59:29 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-09 09:48:24 +0100
commit5c7b17379d2c24d83903ee00a3170d58332a79db (patch)
treeca2be996442e67e23d86c098855595885e49f8f8 /tests/auto/qml/debugger/qpacketprotocol
parenteefbdbfc2109b11b37a99b6b97acca122024278c (diff)
QmlDebugging: Remove QQmlDebugClient
Remove QQmlDebugClient and relevant classes from the library and move to client code. Change-Id: I6f526b3f0c92970dcad5e5abd8585bb9b406349e Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'tests/auto/qml/debugger/qpacketprotocol')
-rw-r--r--tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro7
-rw-r--r--tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp2
2 files changed, 5 insertions, 4 deletions
diff --git a/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro b/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro
index 88439196a7..f631929427 100644
--- a/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro
+++ b/tests/auto/qml/debugger/qpacketprotocol/qpacketprotocol.pro
@@ -2,9 +2,10 @@ CONFIG += testcase
TARGET = tst_qpacketprotocol
macx:CONFIG -= app_bundle
-HEADERS += ../shared/debugutil_p.h
-SOURCES += tst_qpacketprotocol.cpp \
- ../shared/debugutil.cpp
+SOURCES += tst_qpacketprotocol.cpp
+
+INCLUDEPATH += ../shared
+include(../shared/debugutil.pri)
CONFIG += parallel_test
QT += qml-private network testlib
diff --git a/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp b/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp
index c02dd2d8fa..4a6efb469d 100644
--- a/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp
+++ b/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp
@@ -48,7 +48,7 @@
#include <private/qpacketprotocol_p.h>
-#include "../shared/debugutil_p.h"
+#include "debugutil_p.h"
class tst_QPacketProtocol : public QObject
{