rename DisplayHTMLInMessageWindow to DisplayHTMLInMessagePane.

sr=bienvenu
This commit is contained in:
sspitzer%netscape.com 2000-12-19 03:45:21 +00:00
Родитель b387cddd52
Коммит 2a48d3c1f2
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -44,7 +44,7 @@ interface nsIMsgWindow : nsISupports {
attribute nsIMessageView messageView;
attribute nsIMsgFolder openFolder;
attribute nsIDocShell rootDocShell;
void displayHTMLInMessageWindow(in wstring title, in wstring body);
void displayHTMLInMessagePane(in wstring title, in wstring body);
readonly attribute nsIPrompt promptDialog;
attribute wstring mailCharacterSet;

Просмотреть файл

@ -501,7 +501,7 @@ NS_IMETHODIMP nsMsgWindow::GetPromptDialog(nsIPrompt **aPrompt)
}
NS_IMETHODIMP
nsMsgWindow::DisplayHTMLInMessageWindow(const PRUnichar *title, const PRUnichar *body)
nsMsgWindow::DisplayHTMLInMessagePane(const PRUnichar *title, const PRUnichar *body)
{
nsresult rv;

Просмотреть файл

@ -2042,7 +2042,7 @@ PRInt32 nsNNTPProtocol::SendFirstNNTPCommandResponse()
}
}
if (!m_msgWindow) return NS_ERROR_FAILURE;
rv = m_msgWindow->DisplayHTMLInMessageWindow((const PRUnichar *)titleStr, errorHtml.GetUnicode());
rv = m_msgWindow->DisplayHTMLInMessagePane((const PRUnichar *)titleStr, errorHtml.GetUnicode());
NS_ENSURE_SUCCESS(rv,rv);
}
return MK_NNTP_SERVER_ERROR;