diff options
author | Andreas Kling <kling@serenityos.org> | 2021-10-06 20:07:13 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-06 20:10:36 +0200 |
commit | d9e0fd88235e3707bf3a6149b1be119a5e4e452f (patch) | |
tree | 2df320e8ee25c6bab6697c7f2d82d373158023c1 /Userland/Libraries/LibWeb/Layout/Node.h | |
parent | fa45b905bf404f3531406602294ee8d6a6896547 (diff) | |
download | serenity-d9e0fd88235e3707bf3a6149b1be119a5e4e452f.zip |
LibWeb: Rename Layout::Node::is_block_box() => is_block_container()
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/Node.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/Node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/Node.h b/Userland/Libraries/LibWeb/Layout/Node.h index 97a7bb97ed..ccd58dc45f 100644 --- a/Userland/Libraries/LibWeb/Layout/Node.h +++ b/Userland/Libraries/LibWeb/Layout/Node.h @@ -98,7 +98,7 @@ public: // These are used to optimize hot is<T> variants for some classes where dynamic_cast is too slow. virtual bool is_box() const { return false; } - virtual bool is_block_box() const { return false; } + virtual bool is_block_container() const { return false; } virtual bool is_text_node() const { return false; } virtual bool is_initial_containing_block_box() const { return false; } |