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

shdocvw: Added InternetExplorer::put_Visible implementation.

parent 4027a114
......@@ -358,8 +358,11 @@ static HRESULT WINAPI InternetExplorer_get_Visible(IWebBrowser2 *iface, VARIANT_
static HRESULT WINAPI InternetExplorer_put_Visible(IWebBrowser2 *iface, VARIANT_BOOL Value)
{
InternetExplorer *This = WEBBROWSER_THIS(iface);
FIXME("(%p)->(%x)\n", This, Value);
return E_NOTIMPL;
TRACE("(%p)->(%x)\n", This, Value);
ShowWindow(This->frame_hwnd, Value ? SW_SHOW : SW_HIDE);
return S_OK;
}
static HRESULT WINAPI InternetExplorer_get_StatusBar(IWebBrowser2 *iface, VARIANT_BOOL *pBool)
......
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