mshtml: Forward BSCallback::QueryService call to document.

This commit is contained in:
Jacek Caban 2012-05-30 15:49:41 +02:00 committed by Alexandre Julliard
parent 3c1e2132e5
commit 0847563dd4
1 changed files with 5 additions and 2 deletions

View File

@ -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 = {