diff options
Diffstat (limited to 'editor/libeditor/TextEditRules.cpp')
-rw-r--r-- | editor/libeditor/TextEditRules.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/libeditor/TextEditRules.cpp b/editor/libeditor/TextEditRules.cpp index 4ffcd2618..d441b49eb 100644 --- a/editor/libeditor/TextEditRules.cpp +++ b/editor/libeditor/TextEditRules.cpp @@ -1425,9 +1425,9 @@ TextEditRules::CreateMozBR(nsIDOMNode* inParent, NS_ENSURE_SUCCESS(rv, rv); // give it special moz attr - nsCOMPtr<nsIDOMElement> brElem = do_QueryInterface(brNode); + nsCOMPtr<Element> brElem = do_QueryInterface(brNode); if (brElem) { - rv = mTextEditor->SetAttribute(brElem, NS_LITERAL_STRING("type"), + rv = mTextEditor->SetAttribute(brElem, nsGkAtoms::type, NS_LITERAL_STRING("_moz")); NS_ENSURE_SUCCESS(rv, rv); } |