Module: wine Branch: refs/heads/master Commit: 9dc2563aaa8989109f3a8fe9db581c8fcd2df07e URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=9dc2563aaa8989109f3a8fe9... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Sat Jul 22 15:13:36 2006 +0200 shdocvw: Return S_OK in IPersistStreamInit::Load. --- dlls/shdocvw/persist.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/shdocvw/persist.c b/dlls/shdocvw/persist.c index 3a08447..04afb42 100644 --- a/dlls/shdocvw/persist.c +++ b/dlls/shdocvw/persist.c @@ -148,7 +148,7 @@ static HRESULT WINAPI PersistStreamInit_ { WebBrowser *This = PERSTRINIT_THIS(iface); FIXME("(%p)->(%p)\n", This, pStg); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI PersistStreamInit_Save(IPersistStreamInit *iface, LPSTREAM pStg,