From ac4abb75368dca16de4a33b7f5eec7d15f7a843a Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Tue, 20 Jun 2006 19:04:07 +0200 Subject: [PATCH] shdocvw: Return S_OK in IPersistStreamInit::InitNew. --- dlls/shdocvw/persist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shdocvw/persist.c b/dlls/shdocvw/persist.c index 59d70b0df6d..3a084478e63 100644 --- a/dlls/shdocvw/persist.c +++ b/dlls/shdocvw/persist.c @@ -171,7 +171,7 @@ static HRESULT WINAPI PersistStreamInit_InitNew(IPersistStreamInit *iface) { WebBrowser *This = PERSTRINIT_THIS(iface); FIXME("(%p)\n", This); - return E_NOTIMPL; + return S_OK; } #undef PERSTRINIT_THIS