summaryrefslogtreecommitdiffstats
path: root/mailnews/compose
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-11-03 22:50:47 -0500
committerMatt A. Tobin <email@mattatobin.com>2019-11-03 22:50:47 -0500
commit711a5031d015a9fde7feb61905473b52d9cc3369 (patch)
tree0cace52b62bbfa1e83af8710c887b387ca6cabe1 /mailnews/compose
parent37fbbd447b96b72f3e07e18e72509de01f94b7eb (diff)
downloadUXP-711a5031d015a9fde7feb61905473b52d9cc3369.tar
UXP-711a5031d015a9fde7feb61905473b52d9cc3369.tar.gz
UXP-711a5031d015a9fde7feb61905473b52d9cc3369.tar.lz
UXP-711a5031d015a9fde7feb61905473b52d9cc3369.tar.xz
UXP-711a5031d015a9fde7feb61905473b52d9cc3369.zip
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.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/mailnews/compose/src/nsSmtpUrl.cpp b/mailnews/compose/src/nsSmtpUrl.cpp
index cd40bd6cc..29678397c 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
/////////////////////////////////////////////////////////////////////////////////////