Commit c539fb70 authored by Gabriel Ivăncescu's avatar Gabriel Ivăncescu Committed by Alexandre Julliard

mshtml: Use query_interface in the dispex vtbl for HTMLElementCollection.

parent 9efd46b4
...@@ -215,22 +215,12 @@ static HRESULT WINAPI HTMLElementCollection_QueryInterface(IHTMLElementCollectio ...@@ -215,22 +215,12 @@ static HRESULT WINAPI HTMLElementCollection_QueryInterface(IHTMLElementCollectio
{ {
HTMLElementCollection *This = impl_from_IHTMLElementCollection(iface); HTMLElementCollection *This = impl_from_IHTMLElementCollection(iface);
TRACE("(%p)->(%s %p)\n", This, debugstr_mshtml_guid(riid), ppv); if(dispex_query_interface(&This->dispex, riid, ppv))
if(IsEqualGUID(&IID_IUnknown, riid)) {
*ppv = &This->IHTMLElementCollection_iface;
}else if(IsEqualGUID(&IID_IHTMLElementCollection, riid)) {
*ppv = &This->IHTMLElementCollection_iface;
}else if(dispex_query_interface(&This->dispex, riid, ppv)) {
return *ppv ? S_OK : E_NOINTERFACE; return *ppv ? S_OK : E_NOINTERFACE;
}else {
*ppv = NULL;
FIXME("Unsupported iface %s\n", debugstr_mshtml_guid(riid));
return E_NOINTERFACE;
}
IHTMLElementCollection_AddRef(&This->IHTMLElementCollection_iface); *ppv = NULL;
return S_OK; WARN("(%p)->(%s %p)\n", This, debugstr_mshtml_guid(riid), ppv);
return E_NOINTERFACE;
} }
static ULONG WINAPI HTMLElementCollection_AddRef(IHTMLElementCollection *iface) static ULONG WINAPI HTMLElementCollection_AddRef(IHTMLElementCollection *iface)
...@@ -537,6 +527,16 @@ static inline HTMLElementCollection *impl_from_DispatchEx(DispatchEx *iface) ...@@ -537,6 +527,16 @@ static inline HTMLElementCollection *impl_from_DispatchEx(DispatchEx *iface)
return CONTAINING_RECORD(iface, HTMLElementCollection, dispex); return CONTAINING_RECORD(iface, HTMLElementCollection, dispex);
} }
static void *HTMLElementCollection_query_interface(DispatchEx *dispex, REFIID riid)
{
HTMLElementCollection *This = impl_from_DispatchEx(dispex);
if(IsEqualGUID(&IID_IHTMLElementCollection, riid))
return &This->IHTMLElementCollection_iface;
return NULL;
}
static void HTMLElementCollection_traverse(DispatchEx *dispex, nsCycleCollectionTraversalCallback *cb) static void HTMLElementCollection_traverse(DispatchEx *dispex, nsCycleCollectionTraversalCallback *cb)
{ {
HTMLElementCollection *This = impl_from_DispatchEx(dispex); HTMLElementCollection *This = impl_from_DispatchEx(dispex);
...@@ -637,6 +637,7 @@ static HRESULT HTMLElementCollection_invoke(DispatchEx *dispex, DISPID id, LCID ...@@ -637,6 +637,7 @@ static HRESULT HTMLElementCollection_invoke(DispatchEx *dispex, DISPID id, LCID
} }
static const dispex_static_data_vtbl_t HTMLElementColection_dispex_vtbl = { static const dispex_static_data_vtbl_t HTMLElementColection_dispex_vtbl = {
.query_interface = HTMLElementCollection_query_interface,
.destructor = HTMLElementCollection_destructor, .destructor = HTMLElementCollection_destructor,
.traverse = HTMLElementCollection_traverse, .traverse = HTMLElementCollection_traverse,
.unlink = HTMLElementCollection_unlink, .unlink = HTMLElementCollection_unlink,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment