diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-26 05:31:09 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-26 05:31:09 (GMT) |
commit | 3aff93a5bba79bdf45f13e4c9f8c66c9a9ed47b4 (patch) | |
tree | fcd1594b02cd0df98bbe213496207f2be268e677 /src/declarative/qml/qmlinstruction.cpp | |
parent | 4c1cdb0bf25847a8ebf42cf573faf5b2386000b9 (diff) | |
download | Qt-3aff93a5bba79bdf45f13e4c9f8c66c9a9ed47b4.zip Qt-3aff93a5bba79bdf45f13e4c9f8c66c9a9ed47b4.tar.gz Qt-3aff93a5bba79bdf45f13e4c9f8c66c9a9ed47b4.tar.bz2 |
Remove Try*Object instructions
Diffstat (limited to 'src/declarative/qml/qmlinstruction.cpp')
-rw-r--r-- | src/declarative/qml/qmlinstruction.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/declarative/qml/qmlinstruction.cpp b/src/declarative/qml/qmlinstruction.cpp index 923d36f..143dc9b 100644 --- a/src/declarative/qml/qmlinstruction.cpp +++ b/src/declarative/qml/qmlinstruction.cpp @@ -139,15 +139,9 @@ void QmlCompiledComponent::dump(QmlInstruction *instr, int idx) case QmlInstruction::StoreValueSource: qWarning() << idx << "\t" << line << "\t" << "STORE_VALUE_SOURCE\t" << instr->assignValueSource.property; break; - case QmlInstruction::TryBeginObject: - qWarning() << idx << "\t" << line << "\t" << "TRY_BEGIN"; - break; case QmlInstruction::BeginObject: qWarning() << idx << "\t" << line << "\t" << "BEGIN\t\t\t" << instr->begin.castValue; break; - case QmlInstruction::TryCompleteObject: - qWarning() << idx << "\t" << line << "\t" << "TRY_COMPLETE"; - break; case QmlInstruction::CompleteObject: qWarning() << idx << "\t" << line << "\t" << "COMPLETE\t\t" << instr->complete.castValue; break; |