From 683a3e456e29ffa15c439ef66609e8b729140eb8 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Wed, 8 Jan 2014 15:13:30 +0100 Subject: Small bug fix Change-Id: I5c670d898cd7a049de6f8a78d966df1c6fbde2c5 Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4object.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/qml/jsruntime/qv4object.cpp b/src/qml/jsruntime/qv4object.cpp index 3b2fb091dd..35fa998f21 100644 --- a/src/qml/jsruntime/qv4object.cpp +++ b/src/qml/jsruntime/qv4object.cpp @@ -312,7 +312,7 @@ Property *Object::__getPropertyDescriptor__(const StringRef name, PropertyAttrib { uint idx = name->asArrayIndex(); if (idx != UINT_MAX) - return __getPropertyDescriptor__(idx); + return __getPropertyDescriptor__(idx, attrs); const Object *o = this; -- cgit v1.2.3