diff options
author | Andreas Kling <kling@serenityos.org> | 2021-09-08 11:27:46 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-08 11:27:46 +0200 |
commit | e91edcaa28df60bad1de1799c43d8587d00190db (patch) | |
tree | 5dd824b120ec61f695b4581872bcc6cb27608461 /Userland/Applications | |
parent | e90ccf6a2007defe2778be247c8a4ffc6c91163a (diff) | |
download | serenity-e91edcaa28df60bad1de1799c43d8587d00190db.zip |
LibWeb: Rename InitialContainingBlockBox => InitialContainingBlock
The "Box" suffix added nothing here.
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Browser/BrowserWindow.cpp | 2 | ||||
-rw-r--r-- | Userland/Applications/Browser/Tab.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Browser/BrowserWindow.cpp b/Userland/Applications/Browser/BrowserWindow.cpp index 58c32f73b7..78237e5ae2 100644 --- a/Userland/Applications/Browser/BrowserWindow.cpp +++ b/Userland/Applications/Browser/BrowserWindow.cpp @@ -30,7 +30,7 @@ #include <LibGUI/Widget.h> #include <LibJS/Interpreter.h> #include <LibWeb/Dump.h> -#include <LibWeb/Layout/InitialContainingBlockBox.h> +#include <LibWeb/Layout/InitialContainingBlock.h> #include <LibWeb/Loader/ResourceLoader.h> #include <LibWeb/OutOfProcessWebView.h> diff --git a/Userland/Applications/Browser/Tab.cpp b/Userland/Applications/Browser/Tab.cpp index 26596713ff..0482b3a783 100644 --- a/Userland/Applications/Browser/Tab.cpp +++ b/Userland/Applications/Browser/Tab.cpp @@ -31,7 +31,7 @@ #include <LibJS/Interpreter.h> #include <LibWeb/HTML/SyntaxHighlighter/SyntaxHighlighter.h> #include <LibWeb/Layout/BlockBox.h> -#include <LibWeb/Layout/InitialContainingBlockBox.h> +#include <LibWeb/Layout/InitialContainingBlock.h> #include <LibWeb/Loader/ResourceLoader.h> #include <LibWeb/OutOfProcessWebView.h> #include <LibWeb/Page/BrowsingContext.h> |