summaryrefslogtreecommitdiffstats
path: root/kjs/object_object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kjs/object_object.cpp')
-rw-r--r--kjs/object_object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kjs/object_object.cpp b/kjs/object_object.cpp
index e17835df6..c429b96a0 100644
--- a/kjs/object_object.cpp
+++ b/kjs/object_object.cpp
@@ -119,7 +119,7 @@ Value ObjectProtoFuncImp::call(ExecState *exec, Object &thisObj, const List &arg
if (propertyName == specialPrototypePropertyName)
return Value(BooleanImp::staticFalse);
- const HashEntry *entry = obj->findPropertyHashEntry(propertyName);
+ const HashEntry *entry = obj->tqfindPropertyHashEntry(propertyName);
return Value((entry && !(entry->attr & DontEnum)) ?
BooleanImp::staticTrue : BooleanImp::staticFalse);
}