Commit c3f68178 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ieframe: Added semi-stub IHTMLWindow2::close implementation.

parent a8816f51
...@@ -215,8 +215,13 @@ static HRESULT WINAPI IEHTMLWindow2_get_history(IHTMLWindow2 *iface, IOmHistory ...@@ -215,8 +215,13 @@ static HRESULT WINAPI IEHTMLWindow2_get_history(IHTMLWindow2 *iface, IOmHistory
static HRESULT WINAPI IEHTMLWindow2_close(IHTMLWindow2 *iface) static HRESULT WINAPI IEHTMLWindow2_close(IHTMLWindow2 *iface)
{ {
IEHTMLWindow *This = impl_from_IHTMLWindow2(iface); IEHTMLWindow *This = impl_from_IHTMLWindow2(iface);
FIXME("(%p)->()\n", This);
return E_NOTIMPL; FIXME("(%p) semi-stub\n", This);
if(!This->doc_host->wb)
return E_UNEXPECTED;
return IWebBrowser2_put_Visible(This->doc_host->wb, VARIANT_FALSE);
} }
static HRESULT WINAPI IEHTMLWindow2_put_opener(IHTMLWindow2 *iface, VARIANT v) static HRESULT WINAPI IEHTMLWindow2_put_opener(IHTMLWindow2 *iface, VARIANT v)
......
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