30311: add a plain-vs-html flag to InsertAsCitedQuotation. r=rhp

git-svn-id: svn://10.0.0.236/trunk@63485 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
akkana%netscape.com
2000-03-20 23:13:25 +00:00
parent 583933ee4a
commit ebe5e797da
14 changed files with 34 additions and 16 deletions

View File

@@ -444,6 +444,7 @@ nsHTMLEditorLog::InsertAsPlaintextQuotation(const nsString& aQuotedText,
NS_IMETHODIMP
nsHTMLEditorLog::InsertAsCitedQuotation(const nsString& aQuotedText,
const nsString& aCitation,
PRBool aInsertHTML,
const nsString& aCharset,
nsIDOMNode **aNodeInserted)
{
@@ -460,7 +461,7 @@ nsHTMLEditorLog::InsertAsCitedQuotation(const nsString& aQuotedText,
Flush();
}
return nsHTMLEditor::InsertAsCitedQuotation(aQuotedText, aCitation,
return nsHTMLEditor::InsertAsCitedQuotation(aQuotedText, aCitation, aInsertHTML,
aCharset, aNodeInserted);
}