diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-03 22:50:47 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-03 22:50:47 -0500 |
commit | 711a5031d015a9fde7feb61905473b52d9cc3369 (patch) | |
tree | 0cace52b62bbfa1e83af8710c887b387ca6cabe1 /mailnews/compose | |
parent | 37fbbd447b96b72f3e07e18e72509de01f94b7eb (diff) | |
download | uxp-711a5031d015a9fde7feb61905473b52d9cc3369.tar.gz |
Issue #1258 - Part 7: UXP Specific fixes
* This includes Bug 1326433 for Janek fallout (ldap already had this fix)
Diffstat (limited to 'mailnews/compose')
-rw-r--r-- | mailnews/compose/src/nsSmtpUrl.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mailnews/compose/src/nsSmtpUrl.cpp b/mailnews/compose/src/nsSmtpUrl.cpp index cd40bd6cc7..29678397c9 100644 --- a/mailnews/compose/src/nsSmtpUrl.cpp +++ b/mailnews/compose/src/nsSmtpUrl.cpp @@ -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 ///////////////////////////////////////////////////////////////////////////////////// |