summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/generated/JSHTMLCollection.cpp
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@nokia.com>2009-07-30 21:35:00 (GMT)
committerTor Arne Vestbø <tor.arne.vestbo@nokia.com>2009-07-31 11:50:24 (GMT)
commitf6713c0e69d2b2b20da00e9a9a4e23a8f4f85c3d (patch)
treed1fe0b96eeecdc17ea1a5540bf0830182f34fd18 /src/3rdparty/webkit/WebCore/generated/JSHTMLCollection.cpp
parent819bc9a2f9f86260af8a76027a712b2a310a088d (diff)
downloadQt-f6713c0e69d2b2b20da00e9a9a4e23a8f4f85c3d.zip
Qt-f6713c0e69d2b2b20da00e9a9a4e23a8f4f85c3d.tar.gz
Qt-f6713c0e69d2b2b20da00e9a9a4e23a8f4f85c3d.tar.bz2
Fix up generated files to match the previous commit
The changes to WebCore/bindings/scripts/CodeGeneratorJS.pm will take care of this once we upstream the change.
Diffstat (limited to 'src/3rdparty/webkit/WebCore/generated/JSHTMLCollection.cpp')
-rw-r--r--src/3rdparty/webkit/WebCore/generated/JSHTMLCollection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/webkit/WebCore/generated/JSHTMLCollection.cpp b/src/3rdparty/webkit/WebCore/generated/JSHTMLCollection.cpp
index de01068..ca9f066 100644
--- a/src/3rdparty/webkit/WebCore/generated/JSHTMLCollection.cpp
+++ b/src/3rdparty/webkit/WebCore/generated/JSHTMLCollection.cpp
@@ -186,11 +186,11 @@ JSValue jsHTMLCollectionConstructor(ExecState* exec, const Identifier&, const Pr
JSHTMLCollection* domObject = static_cast<JSHTMLCollection*>(asObject(slot.slotBase()));
return JSHTMLCollection::getConstructor(exec, domObject->globalObject());
}
-void JSHTMLCollection::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames)
+void JSHTMLCollection::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, bool includeNonEnumerable)
{
for (unsigned i = 0; i < static_cast<HTMLCollection*>(impl())->length(); ++i)
propertyNames.add(Identifier::from(exec, i));
- Base::getPropertyNames(exec, propertyNames);
+ Base::getPropertyNames(exec, propertyNames, includeNonEnumerable);
}
JSValue JSHTMLCollection::getConstructor(ExecState* exec, JSGlobalObject* globalObject)