summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlinstruction.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-05-26 06:39:12 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-05-26 06:39:12 (GMT)
commit6fb3a8884701b3a08607d0d8ec2e67fabf56d468 (patch)
tree334cc85e7565fedfddb73357dcdbe22a37f42cf3 /src/declarative/qml/qmlinstruction.cpp
parent3aff93a5bba79bdf45f13e4c9f8c66c9a9ed47b4 (diff)
downloadQt-6fb3a8884701b3a08607d0d8ec2e67fabf56d468.zip
Qt-6fb3a8884701b3a08607d0d8ec2e67fabf56d468.tar.gz
Qt-6fb3a8884701b3a08607d0d8ec2e67fabf56d468.tar.bz2
Remove AssignObject instruction
Diffstat (limited to 'src/declarative/qml/qmlinstruction.cpp')
-rw-r--r--src/declarative/qml/qmlinstruction.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/declarative/qml/qmlinstruction.cpp b/src/declarative/qml/qmlinstruction.cpp
index 143dc9b..99f6253 100644
--- a/src/declarative/qml/qmlinstruction.cpp
+++ b/src/declarative/qml/qmlinstruction.cpp
@@ -145,9 +145,6 @@ void QmlCompiledComponent::dump(QmlInstruction *instr, int idx)
case QmlInstruction::CompleteObject:
qWarning() << idx << "\t" << line << "\t" << "COMPLETE\t\t" << instr->complete.castValue;
break;
- case QmlInstruction::AssignObject:
- qWarning() << idx << "\t" << line << "\t" << "ASSIGN_OBJECT\t\t" << instr->assignObject.property << "\t" << instr->assignObject.castValue << "\t\t" << ((instr->assignObject.property == -1)?QByteArray("default"):datas.at(instr->assignObject.property));
- break;
case QmlInstruction::AssignObjectList:
qWarning() << idx << "\t" << line << "\t" << "ASSIGN_OBJECT_LIST\t" << instr->assignObject.property << "\t" << instr->assignObject.castValue << "\t\t" << ((instr->assignObject.property == -1)?QByteArray("default"):datas.at(instr->assignObject.property));
break;