Module: wine Branch: master Commit: 1ca84cb72977750629d7c88a8b1cbbaad58b6a52 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1ca84cb72977750629d7c88a8b...
Author: Jacek Caban jacek@codeweavers.com Date: Tue Nov 8 16:17:31 2011 +0100
mshtml: Make nsIURL::GetParam a stub.
---
dlls/mshtml/nsio.c | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c index f127bbc..aa34ddd 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -2333,13 +2333,11 @@ static nsresult NSAPI nsURL_GetParam(nsIURL *iface, nsACString *aParam) { nsWineURI *This = impl_from_nsIURL(iface);
- TRACE("(%p)->(%p)\n", This, aParam); + WARN("(%p)->(%p)\n", This, aParam);
- if(This->nsurl) - return nsIURL_GetParam(This->nsurl, aParam); - - FIXME("default action not implemented\n"); - return NS_ERROR_NOT_IMPLEMENTED; + /* This is a leftover of ';' special handling in URLs. It will be removed from Gecko soon */ + nsACString_SetData(aParam, ""); + return NS_OK; }
static nsresult NSAPI nsURL_SetParam(nsIURL *iface, const nsACString *aParam)