From 0847563dd410916f3a1095bff3afc2fb71981064 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Wed, 30 May 2012 15:49:41 +0200 Subject: [PATCH] mshtml: Forward BSCallback::QueryService call to document. --- dlls/mshtml/view.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/view.c b/dlls/mshtml/view.c index 67019871eb2..08c53325b02 100644 --- a/dlls/mshtml/view.c +++ b/dlls/mshtml/view.c @@ -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 = {