shdocvw: Return S_OK in IWebBrowser2::Stop.

This commit is contained in:
Jacek Caban 2010-06-28 12:52:43 +02:00 committed by Alexandre Julliard
parent 4c2bb6ca70
commit cfdaa3cd53
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ static HRESULT WINAPI WebBrowser_Stop(IWebBrowser2 *iface)
{ {
WebBrowser *This = WEBBROWSER_THIS(iface); WebBrowser *This = WEBBROWSER_THIS(iface);
FIXME("(%p)\n", This); FIXME("(%p)\n", This);
return E_NOTIMPL; return S_OK;
} }
static HRESULT WINAPI WebBrowser_get_Application(IWebBrowser2 *iface, IDispatch **ppDisp) static HRESULT WINAPI WebBrowser_get_Application(IWebBrowser2 *iface, IDispatch **ppDisp)