mshtml: Make nsIURL::GetParam a stub.
This commit is contained in:
parent
6a7c82186a
commit
1ca84cb729
|
@ -2333,13 +2333,11 @@ static nsresult NSAPI nsURL_GetParam(nsIURL *iface, nsACString *aParam)
|
||||||
{
|
{
|
||||||
nsWineURI *This = impl_from_nsIURL(iface);
|
nsWineURI *This = impl_from_nsIURL(iface);
|
||||||
|
|
||||||
TRACE("(%p)->(%p)\n", This, aParam);
|
WARN("(%p)->(%p)\n", This, aParam);
|
||||||
|
|
||||||
if(This->nsurl)
|
/* This is a leftover of ';' special handling in URLs. It will be removed from Gecko soon */
|
||||||
return nsIURL_GetParam(This->nsurl, aParam);
|
nsACString_SetData(aParam, "");
|
||||||
|
return NS_OK;
|
||||||
FIXME("default action not implemented\n");
|
|
||||||
return NS_ERROR_NOT_IMPLEMENTED;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static nsresult NSAPI nsURL_SetParam(nsIURL *iface, const nsACString *aParam)
|
static nsresult NSAPI nsURL_SetParam(nsIURL *iface, const nsACString *aParam)
|
||||||
|
|
Loading…
Reference in New Issue