QmlJS: Fix initializer of property declaration not being visited in Bind

This lead to the semantic checker reporting incorrect errors in these
initializers.

Task-number: QTCREATORBUG-2340
Reviewed-by: Roberto Raggi
This commit is contained in:
Christian Kamm
2010-09-28 15:50:42 +02:00
parent 9db7e93e3f
commit 2fff849ae1

View File

@@ -232,7 +232,7 @@ bool Bind::visit(UiImport *ast)
bool Bind::visit(UiPublicMember *)
{
// nothing to do.
return false;
return true;
}
bool Bind::visit(UiObjectDefinition *ast)