diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-05 04:00:03 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-05 04:00:03 (GMT) |
commit | f062be7569804461dad94d5b80dc0b87298fd5eb (patch) | |
tree | 9268f72004a03f46957ee03a6cb111a1b1fb8c87 /src/declarative/qml/qmlinstruction.cpp | |
parent | 6089208e78bdcb0091c0ba0bc2fbd2a4fc0806de (diff) | |
download | Qt-f062be7569804461dad94d5b80dc0b87298fd5eb.zip Qt-f062be7569804461dad94d5b80dc0b87298fd5eb.tar.gz Qt-f062be7569804461dad94d5b80dc0b87298fd5eb.tar.bz2 |
Remove XML custom parser support
Diffstat (limited to 'src/declarative/qml/qmlinstruction.cpp')
-rw-r--r-- | src/declarative/qml/qmlinstruction.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/declarative/qml/qmlinstruction.cpp b/src/declarative/qml/qmlinstruction.cpp index 82924c8..52677c2 100644 --- a/src/declarative/qml/qmlinstruction.cpp +++ b/src/declarative/qml/qmlinstruction.cpp @@ -58,9 +58,6 @@ void QmlCompiledComponent::dump(QmlInstruction *instr, int idx) case QmlInstruction::CreateObject: qWarning() << idx << "\t" << line << "\t" << "CREATE\t\t\t" << instr->create.type << "\t\t\t" << types.at(instr->create.type).className; break; - case QmlInstruction::CreateCustomObject: - qWarning() << idx << "\t" << line << "\t" << "CREATE_CUSTOM\t\t" << instr->createCustom.type << "\t" << instr->createCustom.data << "\t\t" << types.at(instr->create.type).className; - break; case QmlInstruction::SetId: qWarning() << idx << "\t" << line << "\t" << "SETID\t\t\t" << instr->setId.value << "\t" << instr->setId.save << "\t\t" << primitives.at(instr->setId.value); break; |