Module: wine Branch: master Commit: e55ed113faee6c3d52cdd5043069f041c34c7bc0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e55ed113faee6c3d52cdd50430... Author: James Hawkins <truiken(a)gmail.com> Date: Fri Oct 6 18:11:46 2006 -0700 shdocvw: Return S_OK in PersistStorage_InitNew. --- 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 04afb42..b4fecbb 100644 --- a/dlls/shdocvw/persist.c +++ b/dlls/shdocvw/persist.c @@ -67,7 +67,7 @@ static HRESULT WINAPI PersistStorage_Ini { WebBrowser *This = PERSTORAGE_THIS(iface); FIXME("(%p)->(%p)\n", This, pStg); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI PersistStorage_Load(IPersistStorage *iface, LPSTORAGE pStg)