diff --git a/src/libs/qmljs/qmljsbind.cpp b/src/libs/qmljs/qmljsbind.cpp index bc56065463bcf61998853419680e17832189a4c1..76572957bd5f62624c62a3d322d83c4e3c3a18ea 100644 --- a/src/libs/qmljs/qmljsbind.cpp +++ b/src/libs/qmljs/qmljsbind.cpp @@ -93,6 +93,9 @@ Interpreter::ObjectValue *Bind::findQmlObject(AST::Node *node) const bool Bind::usesQmlPrototype(ObjectValue *prototype, const Context *context) const { + // ### This function is disabled for performance reasons. + return false; + foreach (ObjectValue *object, _qmlObjects.values()) { const ObjectValue *resolvedPrototype = object->prototype(context);