Issue #1258 - Part 7: UXP Specific fixes

* This includes Bug 1326433 for Janek fallout (ldap already had this fix)
This commit is contained in:
Matt A. Tobin 2019-11-03 22:50:47 -05:00 committed by Roy Tam
commit 971009881c
8 changed files with 54 additions and 37 deletions

View file

@ -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
/////////////////////////////////////////////////////////////////////////////////////