mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 04:22:28 +00:00
LibWeb: Rename InitialContainingBlockBox => InitialContainingBlock
The "Box" suffix added nothing here.
This commit is contained in:
parent
e90ccf6a20
commit
e91edcaa28
Notes:
sideshowbarker
2024-07-18 04:27:12 +09:00
Author: https://github.com/awesomekling
Commit: e91edcaa28
31 changed files with 71 additions and 71 deletions
|
@ -147,8 +147,8 @@ public:
|
|||
|
||||
virtual bool is_child_allowed(const Node&) const override;
|
||||
|
||||
const Layout::InitialContainingBlockBox* layout_node() const;
|
||||
Layout::InitialContainingBlockBox* layout_node();
|
||||
const Layout::InitialContainingBlock* layout_node() const;
|
||||
Layout::InitialContainingBlock* layout_node();
|
||||
|
||||
void schedule_style_update();
|
||||
void schedule_forced_layout();
|
||||
|
@ -309,7 +309,7 @@ private:
|
|||
|
||||
RefPtr<Window> m_window;
|
||||
|
||||
RefPtr<Layout::InitialContainingBlockBox> m_layout_root;
|
||||
RefPtr<Layout::InitialContainingBlock> m_layout_root;
|
||||
|
||||
Optional<Color> m_link_color;
|
||||
Optional<Color> m_active_link_color;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue