Module: wine Branch: refs/heads/master Commit: 42f96fce67a1542e1d6ee717abe00ed223cfa1f9 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=42f96fce67a1542e1d6ee717...
Author: Jacek Caban jacek@codeweavers.com Date: Sat Jun 3 00:45:25 2006 +0200
mshtml: Return S_OK in OnStartBinding and OnStopBinding.
---
dlls/mshtml/navigate.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/navigate.c b/dlls/mshtml/navigate.c index 01e5a56..7e38cf3 100644 --- a/dlls/mshtml/navigate.c +++ b/dlls/mshtml/navigate.c @@ -247,7 +247,7 @@ static HRESULT WINAPI BindStatusCallback { BSCallback *This = STATUSCLB_THIS(iface); FIXME("(%p)->(%ld %p)\n", This, dwReserved, pbind); - return E_NOTIMPL; + return S_OK; }
static HRESULT WINAPI BindStatusCallback_GetPriority(IBindStatusCallback *iface, LONG *pnPriority) @@ -278,7 +278,7 @@ static HRESULT WINAPI BindStatusCallback { BSCallback *This = STATUSCLB_THIS(iface); FIXME("(%p)->(%08lx %s)\n", This, hresult, debugstr_w(szError)); - return E_NOTIMPL; + return S_OK; }
static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,