diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-08-11 03:59:56 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-08-11 03:59:56 (GMT) |
commit | a57bcdde329ef4c9a71aa6ba714f5e30ffd5dc6d (patch) | |
tree | 64cde5908b51e852a3c761031b809f3f056cec16 /src/declarative/qml/qmlinstruction.cpp | |
parent | 712b8ecad2407645ef80fef94181782d2227b002 (diff) | |
download | Qt-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.cpp | 2 |
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: |