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/qmlcompiler.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/qmlcompiler.cpp')
-rw-r--r-- | src/declarative/qml/qmlcompiler.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/declarative/qml/qmlcompiler.cpp b/src/declarative/qml/qmlcompiler.cpp index 9c9a7bd..59cf15d 100644 --- a/src/declarative/qml/qmlcompiler.cpp +++ b/src/declarative/qml/qmlcompiler.cpp @@ -787,15 +787,6 @@ void QmlCompiler::genObject(QmlParser::Object *obj) } genObjectBody(obj); - - // Complete the the class - if (obj->parserStatusCast != -1) { - QmlInstruction complete; - complete.type = QmlInstruction::CompleteObject; - complete.complete.castValue = obj->parserStatusCast; - complete.line = obj->location.start.line; - output->bytecode << complete; - } } void QmlCompiler::genObjectBody(QmlParser::Object *obj) |