mshtml: Added IHTMLWindow2::focus implementation.

This commit is contained in:
Jacek Caban 2011-02-06 22:15:57 +01:00 committed by Alexandre Julliard
parent 46f0538ae0
commit ca835d0a36
1 changed files with 6 additions and 2 deletions

View File

@ -1074,8 +1074,12 @@ static HRESULT WINAPI HTMLWindow2_get_Option(IHTMLWindow2 *iface, IHTMLOptionEle
static HRESULT WINAPI HTMLWindow2_focus(IHTMLWindow2 *iface)
{
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
FIXME("(%p)->()\n", This);
return E_NOTIMPL;
TRACE("(%p)->()\n", This);
if(This->doc_obj)
SetFocus(This->doc_obj->hwnd);
return S_OK;
}
static HRESULT WINAPI HTMLWindow2_get_closed(IHTMLWindow2 *iface, VARIANT_BOOL *p)