mshtml: Add IDOMCustomEvent::detail property implementation.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7e15e49495
commit
757c3025c1
|
@ -2108,8 +2108,11 @@ static HRESULT WINAPI DOMCustomEvent_Invoke(IDOMCustomEvent *iface, DISPID dispI
|
||||||
static HRESULT WINAPI DOMCustomEvent_get_detail(IDOMCustomEvent *iface, VARIANT *p)
|
static HRESULT WINAPI DOMCustomEvent_get_detail(IDOMCustomEvent *iface, VARIANT *p)
|
||||||
{
|
{
|
||||||
DOMCustomEvent *This = impl_from_IDOMCustomEvent(iface);
|
DOMCustomEvent *This = impl_from_IDOMCustomEvent(iface);
|
||||||
FIXME("(%p)->(%p)\n", This, p);
|
|
||||||
return E_NOTIMPL;
|
TRACE("(%p)->(%p)\n", This, p);
|
||||||
|
|
||||||
|
V_VT(p) = VT_EMPTY;
|
||||||
|
return VariantCopy(p, &This->detail);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI DOMCustomEvent_initCustomEvent(IDOMCustomEvent *iface, BSTR type, VARIANT_BOOL can_bubble,
|
static HRESULT WINAPI DOMCustomEvent_initCustomEvent(IDOMCustomEvent *iface, BSTR type, VARIANT_BOOL can_bubble,
|
||||||
|
|
Loading…
Reference in New Issue