diff options
Diffstat (limited to 'WebCore/bindings/js/JSHTMLObjectElementCustom.cpp')
-rw-r--r-- | WebCore/bindings/js/JSHTMLObjectElementCustom.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/bindings/js/JSHTMLObjectElementCustom.cpp b/WebCore/bindings/js/JSHTMLObjectElementCustom.cpp index 68c9e59..c87b932 100644 --- a/WebCore/bindings/js/JSHTMLObjectElementCustom.cpp +++ b/WebCore/bindings/js/JSHTMLObjectElementCustom.cpp @@ -45,12 +45,12 @@ bool JSHTMLObjectElement::getOwnPropertyDescriptorDelegate(ExecState* exec, cons bool JSHTMLObjectElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) { - return runtimeObjectCustomPut(exec, propertyName, value, impl(), slot); + return runtimeObjectCustomPut(exec, propertyName, value, this, slot); } CallType JSHTMLObjectElement::getCallData(CallData& callData) { - return runtimeObjectGetCallData(impl(), callData); + return runtimeObjectGetCallData(this, callData); } } // namespace WebCore |