diff options
author | Bea Lam <bea.lam@nokia.com> | 2009-11-13 01:25:17 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2009-11-13 01:25:17 (GMT) |
commit | 40f78db14b38b549c1afa588c0c8b48d8a849999 (patch) | |
tree | 5803a979ee0a424476e15d30f04009086508ec01 /src/declarative/qml/qmlenginedebug.cpp | |
parent | 073963d9e45d9923cfafd5a3b43ef0dda8fe6d6f (diff) | |
download | Qt-40f78db14b38b549c1afa588c0c8b48d8a849999.zip Qt-40f78db14b38b549c1afa588c0c8b48d8a849999.tar.gz Qt-40f78db14b38b549c1afa588c0c8b48d8a849999.tar.bz2 |
Fix bug in WATCH_OBJECT_R message and add more tests.
Diffstat (limited to 'src/declarative/qml/qmlenginedebug.cpp')
-rw-r--r-- | src/declarative/qml/qmlenginedebug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlenginedebug.cpp b/src/declarative/qml/qmlenginedebug.cpp index 3813d20..7e09fe6 100644 --- a/src/declarative/qml/qmlenginedebug.cpp +++ b/src/declarative/qml/qmlenginedebug.cpp @@ -358,7 +358,7 @@ void QmlEngineDebugServer::messageReceived(const QByteArray &message) QByteArray reply; QDataStream rs(&reply, QIODevice::WriteOnly); - rs << QByteArray("WATCH_OBJECT_R") << queryId << objectId << ok; + rs << QByteArray("WATCH_OBJECT_R") << queryId << ok; sendMessage(reply); } else if (type == "WATCH_PROPERTY") { |