diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-27 03:41:53 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-27 03:41:53 (GMT) |
commit | e4e735ea8c5ae8e65668938d7af2fb11e1cb6c0e (patch) | |
tree | 5073fa9433a31baa06df3fbce781eeeb4a2ba942 /src/declarative/qml/qmlinstruction.cpp | |
parent | 65ba2e6f8a57058305e4ca3bdf77c4e8fed3c243 (diff) | |
download | Qt-e4e735ea8c5ae8e65668938d7af2fb11e1cb6c0e.zip Qt-e4e735ea8c5ae8e65668938d7af2fb11e1cb6c0e.tar.gz Qt-e4e735ea8c5ae8e65668938d7af2fb11e1cb6c0e.tar.bz2 |
Simplify and comment compiler
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 bb40063..0aa860d 100644 --- a/src/declarative/qml/qmlinstruction.cpp +++ b/src/declarative/qml/qmlinstruction.cpp @@ -116,7 +116,7 @@ void QmlCompiledComponent::dump(QmlInstruction *instr, int idx) qWarning() << idx << "\t" << line << "\t" << "STORE_VARIANT\t\t" << instr->storeString.propertyIndex << "\t" << instr->storeString.value << "\t\t" << primitives.at(instr->storeString.value); break; case QmlInstruction::StoreObject: - qWarning() << idx << "\t" << line << "\t" << "STORE_OBJECT\t\t" << instr->storeObject.propertyIndex << "\t" << instr->storeObject.cast; + qWarning() << idx << "\t" << line << "\t" << "STORE_OBJECT\t\t" << instr->storeObject.propertyIndex; break; case QmlInstruction::AssignCustomType: qWarning() << idx << "\t" << line << "\t" << "ASSIGN_CUSTOMTYPE\t\t" << instr->assignCustomType.propertyIndex << "\t" << instr->assignCustomType.valueIndex; |