From: Vijay Kiran Kamuju Subject: [v3 PATCH 2/2] dhtmled.ocx: Fake success in IDHTMLEdit::NewDocument Message-Id: <20210403183950.484978-2-infyquest@gmail.com> Date: Sat, 3 Apr 2021 20:39:50 +0200 In-Reply-To: <20210403183950.484978-1-infyquest@gmail.com> References: <20210403183950.484978-1-infyquest@gmail.com> Signed-off-by: Vijay Kiran Kamuju --- dlls/dhtmled.ocx/edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dhtmled.ocx/edit.c b/dlls/dhtmled.ocx/edit.c index e111f0b7979..fc518de7323 100644 --- a/dlls/dhtmled.ocx/edit.c +++ b/dlls/dhtmled.ocx/edit.c @@ -191,7 +191,7 @@ static HRESULT WINAPI DHTMLEdit_NewDocument(IDHTMLEdit *iface) { DHTMLEditImpl *This = impl_from_IDHTMLEdit(iface); FIXME("(%p)->() stub\n", This); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI DHTMLEdit_LoadURL(IDHTMLEdit *iface, BSTR url) -- 2.31.1