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/Painting/SVGPaintable.h | |
parent | f017c1c064e30399a569dde21051b377ab91528d (diff) | |
download | serenity-ba606d90570f2a57cc094c19cf4fd35a43e22102.zip |
LibWeb: Move PaintingBox to its own .cpp and .h files
Diffstat (limited to 'Userland/Libraries/LibWeb/Painting/SVGPaintable.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Painting/SVGPaintable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Painting/SVGPaintable.h b/Userland/Libraries/LibWeb/Painting/SVGPaintable.h index d1a2250bd8..59eb8f008e 100644 --- a/Userland/Libraries/LibWeb/Painting/SVGPaintable.h +++ b/Userland/Libraries/LibWeb/Painting/SVGPaintable.h @@ -7,7 +7,7 @@ #pragma once #include <LibWeb/Layout/SVGBox.h> -#include <LibWeb/Painting/Paintable.h> +#include <LibWeb/Painting/PaintableBox.h> namespace Web::Painting { |