Bug 420700 - Bustage fix.

git-svn-id: svn://10.0.0.236/trunk@247237 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bent.mozilla%gmail.com
2008-03-06 20:35:42 +00:00
parent 326f9d18bf
commit a9dcb5de7f
2 changed files with 2 additions and 2 deletions

View File

@@ -2643,7 +2643,7 @@ nsresult nsHTMLEditor::ParseFragment(const nsAString & aFragStr,
parser->ParseFragment(aFragStr, 0, aTagStack, PR_FALSE, NS_LITERAL_CSTRING("text/html"), eDTDMode_quirks);
// get the fragment node
nsCOMPtr<nsIDOMDocumentFragment> contextfrag;
res = fragSink->GetFragment(getter_AddRefs(contextfrag));
res = fragSink->GetFragment(PR_TRUE, getter_AddRefs(contextfrag));
NS_ENSURE_SUCCESS(res, res);
*outNode = do_QueryInterface(contextfrag);