From 392aa3987bbbb3704289c70412c429001e41960d Mon Sep 17 00:00:00 2001 From: Gaming4JC Date: Fri, 22 May 2020 12:05:13 -0400 Subject: Bug 1318570 - Clean up GetTextNode into TextEditRules. EditorBase parameter of GetTextNode is unnecessary because it uses static method only. Also, we should return nsINode to reduce QI. Resolves #1617 --- editor/libeditor/TextEditRules.cpp | 34 ++++++++++++++-------------------- 1 file changed, 14 insertions(+), 20 deletions(-) (limited to 'editor') diff --git a/editor/libeditor/TextEditRules.cpp b/editor/libeditor/TextEditRules.cpp index 35d4a2f3d..4ecaff722 100644 --- a/editor/libeditor/TextEditRules.cpp +++ b/editor/libeditor/TextEditRules.cpp @@ -25,7 +25,6 @@ #include "nsError.h" #include "nsGkAtoms.h" #include "nsIContent.h" -#include "nsIDOMCharacterData.h" #include "nsIDOMDocument.h" #include "nsIDOMElement.h" #include "nsIDOMNode.h" @@ -479,26 +478,24 @@ TextEditRules::CollapseSelectionToTrailingBRIfNeeded(Selection* aSelection) return NS_OK; } -static inline already_AddRefed -GetTextNode(Selection* selection, - EditorBase* editor) +static inline already_AddRefed +GetTextNode(Selection* selection) { int32_t selOffset; - nsCOMPtr selNode; + nsCOMPtr selNode; nsresult rv = - editor->GetStartNodeAndOffset(selection, - getter_AddRefs(selNode), &selOffset); + EditorBase::GetStartNodeAndOffset(selection, + getter_AddRefs(selNode), &selOffset); NS_ENSURE_SUCCESS(rv, nullptr); - if (!editor->IsTextNode(selNode)) { - // Get an nsINode from the nsIDOMNode - nsCOMPtr node = do_QueryInterface(selNode); - // if node is null, return it to indicate there's no text - NS_ENSURE_TRUE(node, nullptr); + if (!EditorBase::IsTextNode(selNode)) { // This should be the root node, walk the tree looking for text nodes RefPtr iter = - new NodeIterator(node, nsIDOMNodeFilter::SHOW_TEXT, NodeFilterHolder()); - while (!editor->IsTextNode(selNode)) { - if (NS_FAILED(iter->NextNode(getter_AddRefs(selNode))) || !selNode) { + new NodeIterator(selNode, nsIDOMNodeFilter::SHOW_TEXT, + NodeFilterHolder()); + while (!EditorBase::IsTextNode(selNode)) { + IgnoredErrorResult rv; + selNode = iter->NextNode(rv); + if (!selNode) { return nullptr; } } @@ -1382,13 +1379,10 @@ TextEditRules::HideLastPWInput() nsContentUtils::GetSelectionInTextControl(selection, mTextEditor->GetRoot(), start, end); - nsCOMPtr selNode = GetTextNode(selection, mTextEditor); + nsCOMPtr selNode = GetTextNode(selection); NS_ENSURE_TRUE(selNode, NS_OK); - nsCOMPtr nodeAsText(do_QueryInterface(selNode)); - NS_ENSURE_TRUE(nodeAsText, NS_OK); - - nodeAsText->ReplaceData(mLastStart, mLastLength, hiddenText); + selNode->GetAsText()->ReplaceData(mLastStart, mLastLength, hiddenText); selection->Collapse(selNode, start); if (start != end) { selection->Extend(selNode, end); -- cgit v1.2.3