Module: wine Branch: master Commit: a9dec383d53170c21b7fd9abc7d8d4009a8479c7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a9dec383d53170c21b7fd9abc7...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Aug 18 13:38:18 2010 +0200
mshtml: Added nsIChannel::GetName implementation.
---
dlls/mshtml/nsio.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c index 5332a02..d88ccde 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -509,9 +509,9 @@ static nsresult NSAPI nsChannel_GetName(nsIHttpChannel *iface, nsACString *aName { nsChannel *This = NSCHANNEL_THIS(iface);
- FIXME("(%p)->(%p)\n", This, aName); + TRACE("(%p)->(%p)\n", This, aName);
- return NS_ERROR_NOT_IMPLEMENTED; + return nsIURI_GetSpec(NSURI(This->uri), aName); }
static nsresult NSAPI nsChannel_IsPending(nsIHttpChannel *iface, PRBool *_retval)