mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
Issue #1258 - Part 7: UXP Specific fixes
* This includes Bug 1326433 for Janek fallout (ldap already had this fix)
This commit is contained in:
parent
28473a58a2
commit
971009881c
8 changed files with 54 additions and 37 deletions
|
|
@ -248,6 +248,30 @@ nsAddbookUrl::SetRef(const nsACString &aRef)
|
|||
return ParseUrl();
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsAddbookUrl::GetFilePath(nsACString &aFilePath)
|
||||
{
|
||||
return m_baseURL->GetFilePath(aFilePath);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsAddbookUrl::SetFilePath(const nsACString &aFilePath)
|
||||
{
|
||||
return m_baseURL->SetFilePath(aFilePath);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsAddbookUrl::GetQuery(nsACString &aQuery)
|
||||
{
|
||||
return m_baseURL->GetQuery(aQuery);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsAddbookUrl::SetQuery(const nsACString &aQuery)
|
||||
{
|
||||
return m_baseURL->SetQuery(aQuery);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP nsAddbookUrl::EqualsExceptRef(nsIURI *other, bool *_retval)
|
||||
{
|
||||
// The passed-in URI might be an nsMailtoUrl. Pass our inner URL to its
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue