summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlvme.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-09-23 01:25:23 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-09-23 01:25:23 (GMT)
commit1206562c6be4098de8a9fdda5c7ff5c8fdd6bc01 (patch)
tree4805291611955bf1e18c36c028bf6b32061a4129 /src/declarative/qml/qmlvme.cpp
parent30379e098ef31a8a1f670bdeab212ed419e80b5b (diff)
downloadQt-1206562c6be4098de8a9fdda5c7ff5c8fdd6bc01.zip
Qt-1206562c6be4098de8a9fdda5c7ff5c8fdd6bc01.tar.gz
Qt-1206562c6be4098de8a9fdda5c7ff5c8fdd6bc01.tar.bz2
Use a bitmask to track bound properties
Diffstat (limited to 'src/declarative/qml/qmlvme.cpp')
-rw-r--r--src/declarative/qml/qmlvme.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlvme.cpp b/src/declarative/qml/qmlvme.cpp
index d377cc3..606a732 100644
--- a/src/declarative/qml/qmlvme.cpp
+++ b/src/declarative/qml/qmlvme.cpp
@@ -565,9 +565,8 @@ QObject *QmlVME::run(QStack<QObject *> &stack, QmlContext *ctxt, QmlCompiledData
QmlBinding *bind = new QmlBinding((void *)datas.at(instr.assignBinding.value).constData(), comp, context, ctxt, 0);
bindValues.append(bind);
bind->m_mePtr = &bindValues.values[bindValues.count - 1];
- bind->addToObject(target);
-
bind->setTarget(mp);
+ bind->addToObject(target);
}
break;