Jacek Caban : shdocvw: Return S_OK in OnInPlaceDeactivate.

Alexandre Julliard julliard at wine.codeweavers.com
Sat May 20 07:26:15 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: ae2c061e8e7e071aa00ebfdc213eaa966a37628b
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=ae2c061e8e7e071aa00ebfdc213eaa966a37628b

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Thu May 18 22:43:01 2006 +0200

shdocvw: Return S_OK in OnInPlaceDeactivate.

---

 dlls/shdocvw/client.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dlls/shdocvw/client.c b/dlls/shdocvw/client.c
index 6ba5d03..4fa7044 100644
--- a/dlls/shdocvw/client.c
+++ b/dlls/shdocvw/client.c
@@ -246,8 +246,11 @@ static HRESULT WINAPI InPlaceSite_OnUIDe
 static HRESULT WINAPI InPlaceSite_OnInPlaceDeactivate(IOleInPlaceSite *iface)
 {
     DocHost *This = INPLACESITE_THIS(iface);
-    FIXME("(%p)\n", This);
-    return E_NOTIMPL;
+
+    TRACE("(%p)\n", This);
+
+    /* Nothing to do here */
+    return S_OK;
 }
 
 static HRESULT WINAPI InPlaceSite_DiscardUndoState(IOleInPlaceSite *iface)




More information about the wine-cvs mailing list