TRACE("(%p)->(%p)\n", This, aPath);
- if(This->nsuri)
- return nsIURI_GetPath(This->nsuri, aPath);
-
return get_uri_string(This, Uri_PROPERTY_PATH, aPath);
}
TRACE("(%p)->(%s %p)\n", This, debugstr_nsacstr(aRelativePath), _retval);
- if(This->nsuri)
- return nsIURI_Resolve(This->nsuri, aRelativePath, _retval);
-
nsACString_GetData(aRelativePath, &patha);
path = heap_strdupAtoW(patha);
if(!path)
TRACE("(%p)->(%p)\n", This, aQuery);
- if(This->nsurl)
- return nsIURL_GetQuery(This->nsurl, aQuery);
-
return get_uri_string(This, Uri_PROPERTY_QUERY, aQuery);
}