Commit 81ae4182 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

shdocvw: Return something more useful for WebBrowser_get_ReadyState.

parent 366854a7
......@@ -738,7 +738,9 @@ static HRESULT WINAPI WebBrowser_get_ReadyState(IWebBrowser2 *iface, READYSTATE
{
WebBrowser *This = WEBBROWSER_THIS(iface);
FIXME("(%p)->(%p)\n", This, lpReadyState);
return E_NOTIMPL;
*lpReadyState = READYSTATE_COMPLETE;
return S_OK;
}
static HRESULT WINAPI WebBrowser_get_Offline(IWebBrowser2 *iface, VARIANT_BOOL *pbOffline)
......
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