mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +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
|
|
@ -605,6 +605,30 @@ nsMailtoUrl::GetHasRef(bool *result)
|
|||
return m_baseURL->GetHasRef(result);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsMailtoUrl::GetFilePath(nsACString &aFilePath)
|
||||
{
|
||||
return m_baseURL->GetFilePath(aFilePath);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsMailtoUrl::SetFilePath(const nsACString &aFilePath)
|
||||
{
|
||||
return m_baseURL->SetFilePath(aFilePath);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsMailtoUrl::GetQuery(nsACString &aQuery)
|
||||
{
|
||||
return m_baseURL->GetQuery(aQuery);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsMailtoUrl::SetQuery(const nsACString &aQuery)
|
||||
{
|
||||
return m_baseURL->SetQuery(aQuery);
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
// smtp url definition
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue