Module: wine Branch: master Commit: 8d275952875efa268c4034103d6f4e1b9254e8c3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8d275952875efa268c4034103d...
Author: Zhenbo Li litimetal@gmail.com Date: Fri May 16 21:47:41 2014 +0800
mshtml: Added IHTMLLocation::assign method implementation.
---
dlls/mshtml/htmllocation.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmllocation.c b/dlls/mshtml/htmllocation.c index 0c50609..6411eb7 100644 --- a/dlls/mshtml/htmllocation.c +++ b/dlls/mshtml/htmllocation.c @@ -575,8 +575,8 @@ static HRESULT WINAPI HTMLLocation_replace(IHTMLLocation *iface, BSTR bstr) static HRESULT WINAPI HTMLLocation_assign(IHTMLLocation *iface, BSTR bstr) { HTMLLocation *This = impl_from_IHTMLLocation(iface); - FIXME("(%p)->(%s)\n", This, debugstr_w(bstr)); - return E_NOTIMPL; + TRACE("(%p)->(%s)\n", This, debugstr_w(bstr)); + return IHTMLLocation_put_href(iface, bstr); }
static HRESULT WINAPI HTMLLocation_toString(IHTMLLocation *iface, BSTR *String)