Module: wine Branch: master Commit: 0847563dd410916f3a1095bff3afc2fb71981064 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0847563dd410916f3a1095bff3...
Author: Jacek Caban jacek@codeweavers.com Date: Wed May 30 15:49:41 2012 +0200
mshtml: Forward BSCallback::QueryService call to document.
---
dlls/mshtml/view.c | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/view.c b/dlls/mshtml/view.c index 6701987..08c5332 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 = {