summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibWeb')
-rw-r--r--Libraries/LibWeb/TreeNode.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/Libraries/LibWeb/TreeNode.h b/Libraries/LibWeb/TreeNode.h
index 5f1fef9d1f..5221e260f9 100644
--- a/Libraries/LibWeb/TreeNode.h
+++ b/Libraries/LibWeb/TreeNode.h
@@ -99,7 +99,6 @@ public:
void append_child(NonnullRefPtr<T> node, bool notify = true);
void insert_before(NonnullRefPtr<T> node, RefPtr<T> child, bool notify = true);
NonnullRefPtr<T> remove_child(NonnullRefPtr<T> node);
- void donate_all_children_to(T& node);
bool is_child_allowed(const T&) const { return true; }
@@ -392,24 +391,6 @@ inline void TreeNode<T>::prepend_child(NonnullRefPtr<T> node)
}
template<typename T>
-inline void TreeNode<T>::donate_all_children_to(T& node)
-{
- for (T* child = m_first_child; child != nullptr;) {
- T* next_child = child->m_next_sibling;
-
- child->m_parent = nullptr;
- child->m_next_sibling = nullptr;
- child->m_previous_sibling = nullptr;
-
- node.append_child(adopt(*child));
- child = next_child;
- }
-
- m_first_child = nullptr;
- m_last_child = nullptr;
-}
-
-template<typename T>
inline bool TreeNode<T>::is_ancestor_of(const TreeNode<T>& other) const
{
for (auto* ancestor = other.parent(); ancestor; ancestor = ancestor->parent()) {