summaryrefslogtreecommitdiffstats
path: root/src/declarative/debugger
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2011-02-10 13:37:15 (GMT)
committerKai Koehne <kai.koehne@nokia.com>2011-02-11 07:29:59 (GMT)
commit2855782a45b08aedbed960125514fdd9663ff1c8 (patch)
tree0932fffd4580f6dbbf9b11bd28bdf7019a98d264 /src/declarative/debugger
parent48b9220a1c53ccb6726147381e2ace41927d3b0d (diff)
downloadQt-2855782a45b08aedbed960125514fdd9663ff1c8.zip
Qt-2855782a45b08aedbed960125514fdd9663ff1c8.tar.gz
Qt-2855782a45b08aedbed960125514fdd9663ff1c8.tar.bz2
Rename 'plugins\qmldebugging' (work around qmake issues)
On Windows, qmake places the tcpserver.dll in a 'plugins\qmlreleaseging' folder, which broke remote debugging of QtDeclarative completely. New name 'qmltooling' while being not so specific, avoids the use of 'debug' in the folder name. Task-number: QTBUG-17360 Reviewed-by: Martin Jones
Diffstat (limited to 'src/declarative/debugger')
-rw-r--r--src/declarative/debugger/qdeclarativedebugserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/debugger/qdeclarativedebugserver.cpp b/src/declarative/debugger/qdeclarativedebugserver.cpp
index a269984..ea3d9a3 100644
--- a/src/declarative/debugger/qdeclarativedebugserver.cpp
+++ b/src/declarative/debugger/qdeclarativedebugserver.cpp
@@ -118,7 +118,7 @@ QDeclarativeDebugServerConnection *QDeclarativeDebugServerPrivate::loadConnectio
QStringList pluginCandidates;
const QStringList paths = QCoreApplication::libraryPaths();
foreach (const QString &libPath, paths) {
- const QDir dir(libPath + QLatin1String("/qmldebugging"));
+ const QDir dir(libPath + QLatin1String("/qmltooling"));
if (dir.exists()) {
QStringList plugins(dir.entryList(QDir::Files));
foreach (const QString &pluginPath, plugins) {