summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLImageElement.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-03-10 23:13:37 +0100
committerAndreas Kling <kling@serenityos.org>2022-03-11 00:21:49 +0100
commitba606d90570f2a57cc094c19cf4fd35a43e22102 (patch)
treee8f657406e15c0ca46f956309ad1e6a75fcc2019 /Userland/Libraries/LibWeb/HTML/HTMLImageElement.cpp
parentf017c1c064e30399a569dde21051b377ab91528d (diff)
downloadserenity-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.cpp2
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 {