Commit af9508a1 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Added nsIURI::GetSpecIgnoringRef implementation.

parent 95053e83
......@@ -2411,8 +2411,20 @@ static nsresult NSAPI nsURI_GetSpecIgnoringRef(nsIURL *iface, nsACString *aSpecI
static nsresult NSAPI nsURI_GetHasRef(nsIURL *iface, PRBool *aHasRef)
{
nsWineURI *This = impl_from_nsIURL(iface);
FIXME("(%p)->(%p)\n", This, aHasRef);
return NS_ERROR_NOT_IMPLEMENTED;
BOOL b;
HRESULT hres;
TRACE("(%p)->(%p)\n", This, aHasRef);
if(!ensure_uri(This))
return NS_ERROR_UNEXPECTED;
hres = IUri_HasProperty(This->uri, Uri_PROPERTY_FRAGMENT, &b);
if(FAILED(hres))
return NS_ERROR_FAILURE;
*aHasRef = b;
return NS_OK;
}
static nsresult NSAPI nsURL_GetFilePath(nsIURL *iface, nsACString *aFilePath)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment