mshtml: Forward BSCallback::QueryService call to document.
This commit is contained in:
parent
3c1e2132e5
commit
0847563dd4
|
@ -953,8 +953,11 @@ static ULONG WINAPI WindowForBindingUI_Release(IWindowForBindingUI *iface)
|
|||
static HRESULT WINAPI WindowForBindingUI_GetWindow(IWindowForBindingUI *iface, REFGUID rguidReason, HWND *phwnd)
|
||||
{
|
||||
HTMLDocumentObj *This = impl_from_IWindowForBindingUI(iface);
|
||||
FIXME("(%p)->(%s %p)\n", This, debugstr_guid(rguidReason), phwnd);
|
||||
return E_NOTIMPL;
|
||||
|
||||
TRACE("(%p)->(%s %p)\n", This, debugstr_guid(rguidReason), phwnd);
|
||||
|
||||
*phwnd = This->hwnd;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static const IWindowForBindingUIVtbl WindowForBindingUIVtbl = {
|
||||
|
|
Loading…
Reference in New Issue