Commit 0847563d authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Forward BSCallback::QueryService call to document.

parent 3c1e2132
...@@ -953,8 +953,11 @@ static ULONG WINAPI WindowForBindingUI_Release(IWindowForBindingUI *iface) ...@@ -953,8 +953,11 @@ static ULONG WINAPI WindowForBindingUI_Release(IWindowForBindingUI *iface)
static HRESULT WINAPI WindowForBindingUI_GetWindow(IWindowForBindingUI *iface, REFGUID rguidReason, HWND *phwnd) static HRESULT WINAPI WindowForBindingUI_GetWindow(IWindowForBindingUI *iface, REFGUID rguidReason, HWND *phwnd)
{ {
HTMLDocumentObj *This = impl_from_IWindowForBindingUI(iface); 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 = { static const IWindowForBindingUIVtbl WindowForBindingUIVtbl = {
......
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