aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2014-01-08 15:13:30 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-20 21:13:57 +0100
commit683a3e456e29ffa15c439ef66609e8b729140eb8 (patch)
tree54be0d3c4b167f573d2f850ca1e9834a75f30fd9 /src
parent3035632ba1516a5704013279305ea37ba6f3d664 (diff)
Small bug fix
Change-Id: I5c670d898cd7a049de6f8a78d966df1c6fbde2c5 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/qml/jsruntime/qv4object.cpp2
1 files changed, 1 insertions, 1 deletions
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;