diff options
author | Andreas Kling <kling@serenityos.org> | 2022-03-10 23:13:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-11 00:21:49 +0100 |
commit | ba606d90570f2a57cc094c19cf4fd35a43e22102 (patch) | |
tree | e8f657406e15c0ca46f956309ad1e6a75fcc2019 /Userland/Libraries/LibWeb/HTML/HTMLImageElement.cpp | |
parent | f017c1c064e30399a569dde21051b377ab91528d (diff) | |
download | serenity-ba606d90570f2a57cc094c19cf4fd35a43e22102.zip |
LibWeb: Move PaintingBox to its own .cpp and .h files
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLImageElement.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLImageElement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.cpp index bc45f8a9fc..79de7a9e13 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.cpp +++ b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.cpp @@ -13,7 +13,7 @@ #include <LibWeb/HTML/HTMLImageElement.h> #include <LibWeb/Layout/ImageBox.h> #include <LibWeb/Loader/ResourceLoader.h> -#include <LibWeb/Painting/Paintable.h> +#include <LibWeb/Painting/PaintableBox.h> namespace Web::HTML { |