summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2009-11-02 01:23:59 (GMT)
committerBea Lam <bea.lam@nokia.com>2009-11-02 01:24:58 (GMT)
commit837f5d2385e413b89e78cd487f5a3f818c179292 (patch)
tree25b3f3f259db9434fbce3ab336a5ff314190d397 /src/declarative/qml
parent55e2858f2146d72bc43bde850dbec0cf7aa055e6 (diff)
downloadQt-837f5d2385e413b89e78cd487f5a3f818c179292.zip
Qt-837f5d2385e413b89e78cd487f5a3f818c179292.tar.gz
Qt-837f5d2385e413b89e78cd487f5a3f818c179292.tar.bz2
Fix to send correct data for property value changes.
Diffstat (limited to 'src/declarative/qml')
-rw-r--r--src/declarative/qml/qmlenginedebug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlenginedebug.cpp b/src/declarative/qml/qmlenginedebug.cpp
index 7fb8d36..5b54fbb 100644
--- a/src/declarative/qml/qmlenginedebug.cpp
+++ b/src/declarative/qml/qmlenginedebug.cpp
@@ -418,7 +418,7 @@ void QmlEngineDebugServer::propertyChanged(int id, int objectId, const QMetaProp
QByteArray reply;
QDataStream rs(&reply, QIODevice::WriteOnly);
- rs << QByteArray("UPDATE_WATCH") << id << objectId << QString::fromUtf8(property.name()) << valueContents(value);
+ rs << QByteArray("UPDATE_WATCH") << id << objectId << QByteArray(property.name()) << valueContents(value);
sendMessage(reply);
}