mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:47:34 +00:00
LibWeb: Rename LayoutNode::node() => LayoutNode::dom_node()
This commit is contained in:
parent
85859544fa
commit
f358f2255f
30 changed files with 92 additions and 92 deletions
|
@ -69,7 +69,7 @@ InspectorWidget::InspectorWidget()
|
|||
m_layout_tree_view = top_tab_widget.add_tab<GUI::TreeView>("Layout");
|
||||
m_layout_tree_view->on_selection = [this](auto& index) {
|
||||
auto* node = static_cast<Web::LayoutNode*>(index.internal_data());
|
||||
set_inspected_node(node->node());
|
||||
set_inspected_node(node->dom_node());
|
||||
};
|
||||
|
||||
auto& bottom_tab_widget = splitter.add<GUI::TabWidget>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue