diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-07-29 06:00:33 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-07-29 06:00:33 (GMT) |
commit | a915df4fa1217d2670348029d2d9fb709118ddc2 (patch) | |
tree | afcd405b2a046a6d2dbce9be4b3e6559eb9dfbdc /src/declarative/qml/qmlvme.cpp | |
parent | 9abd22080de9898a5edf0cb4d9973d3ce611af62 (diff) | |
download | Qt-a915df4fa1217d2670348029d2d9fb709118ddc2.zip Qt-a915df4fa1217d2670348029d2d9fb709118ddc2.tar.gz Qt-a915df4fa1217d2670348029d2d9fb709118ddc2.tar.bz2 |
Get rid of classComplete.
componentComplete is always what is wanted.
Diffstat (limited to 'src/declarative/qml/qmlvme.cpp')
-rw-r--r-- | src/declarative/qml/qmlvme.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/declarative/qml/qmlvme.cpp b/src/declarative/qml/qmlvme.cpp index 1cfd5e9..ee41fe4 100644 --- a/src/declarative/qml/qmlvme.cpp +++ b/src/declarative/qml/qmlvme.cpp @@ -522,14 +522,6 @@ QObject *QmlVME::run(QStack<QObject *> &stack, QmlContext *ctxt, QmlCompiledData } break; - case QmlInstruction::CompleteObject: - { - QObject *target = stack.top(); - QmlParserStatus *status = reinterpret_cast<QmlParserStatus *>(reinterpret_cast<char *>(target) + instr.complete.castValue); - status->classComplete(); - } - break; - case QmlInstruction::StoreCompiledBinding: { QObject *target = |