From 711a5031d015a9fde7feb61905473b52d9cc3369 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Sun, 3 Nov 2019 22:50:47 -0500 Subject: Issue #1258 - Part 7: UXP Specific fixes * This includes Bug 1326433 for Janek fallout (ldap already had this fix) --- mailnews/compose/src/nsSmtpUrl.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'mailnews/compose') 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 ///////////////////////////////////////////////////////////////////////////////////// -- cgit v1.2.3