Module: wine Branch: master Commit: a34bd3b2cda09696f7303441d1b216a277e42f7d URL: http://source.winehq.org/git/wine.git/?a=commit;h=a34bd3b2cda09696f7303441d1...
Author: Chris Wulff crwulff@rochester.rr.com Date: Sun Jan 6 14:06:44 2008 -0500
shdocvw: Hide and show the frame window instead of the inner one.
---
dlls/shdocvw/oleobject.c | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/dlls/shdocvw/oleobject.c b/dlls/shdocvw/oleobject.c index 7ff1b22..f07460f 100644 --- a/dlls/shdocvw/oleobject.c +++ b/dlls/shdocvw/oleobject.c @@ -166,7 +166,11 @@ static HRESULT activate_ui(WebBrowser *This, IOleClientSite *active_site) static const WCHAR wszitem[] = {'i','t','e','m',0};
if(This->inplace) + { + if(This->shell_embedding_hwnd) + ShowWindow(This->shell_embedding_hwnd, SW_SHOW); return S_OK; + }
hres = activate_inplace(This, active_site); if(FAILED(hres)) @@ -421,8 +425,8 @@ static HRESULT WINAPI OleObject_DoVerb(IOleObject *iface, LONG iVerb, struct tag return activate_inplace(This, pActiveSite); case OLEIVERB_HIDE: TRACE("OLEIVERB_HIDE\n"); - if(This->doc_host.hwnd) - ShowWindow(This->doc_host.hwnd, SW_HIDE); + if(This->shell_embedding_hwnd) + ShowWindow(This->shell_embedding_hwnd, SW_HIDE); return S_OK; default: FIXME("stub for %d\n", iVerb);