summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlinstruction.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-08-11 03:59:56 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-08-11 03:59:56 (GMT)
commita57bcdde329ef4c9a71aa6ba714f5e30ffd5dc6d (patch)
tree64cde5908b51e852a3c761031b809f3f056cec16 /src/declarative/qml/qmlinstruction.cpp
parent712b8ecad2407645ef80fef94181782d2227b002 (diff)
downloadQt-a57bcdde329ef4c9a71aa6ba714f5e30ffd5dc6d.zip
Qt-a57bcdde329ef4c9a71aa6ba714f5e30ffd5dc6d.tar.gz
Qt-a57bcdde329ef4c9a71aa6ba714f5e30ffd5dc6d.tar.bz2
Object property binding optimization
Add a binding optimization that hits anchors.fill: parent
Diffstat (limited to 'src/declarative/qml/qmlinstruction.cpp')
-rw-r--r--src/declarative/qml/qmlinstruction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlinstruction.cpp b/src/declarative/qml/qmlinstruction.cpp
index 889a057..fd912ac 100644
--- a/src/declarative/qml/qmlinstruction.cpp
+++ b/src/declarative/qml/qmlinstruction.cpp
@@ -140,7 +140,7 @@ void QmlCompiledData::dump(QmlInstruction *instr, int idx)
case QmlInstruction::AssignCustomType:
qWarning() << idx << "\t" << line << "\t" << "ASSIGN_CUSTOMTYPE\t\t" << instr->assignCustomType.propertyIndex << "\t" << instr->assignCustomType.valueIndex;
break;
- case QmlInstruction::StoreCompiledBinding:
+ case QmlInstruction::StoreBinding:
qWarning() << idx << "\t" << line << "\t" << "STORE_COMPILED_BINDING\t" << instr->assignBinding.property << "\t" << instr->assignBinding.value << "\t\t" << instr->assignBinding.context;
break;
case QmlInstruction::StoreValueSource: