diff options
author | Andrew Kaster <akaster@serenityos.org> | 2022-09-30 17:16:16 -0600 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-01 21:05:32 +0100 |
commit | 56b381aac0db837b1b840c482edd9a8d67c2600e (patch) | |
tree | 835135e0badd6334e452648a97d60b60024c30da /Userland/Libraries/LibWeb/SVG/SVGElement.cpp | |
parent | cc164dc1e2441192020ca04f782763ce33893558 (diff) | |
download | serenity-56b381aac0db837b1b840c482edd9a8d67c2600e.zip |
LibWeb: Cleanup unecessary uses and includes of HTML::Window
The big global refactor left some stragglers behind for atomicity.
Clean up the rest, and remove a ton of includes of LibWeb/HTML/Window.h
Diffstat (limited to 'Userland/Libraries/LibWeb/SVG/SVGElement.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/SVG/SVGElement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/SVG/SVGElement.cpp b/Userland/Libraries/LibWeb/SVG/SVGElement.cpp index d377e54900..82155ad6bb 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGElement.cpp +++ b/Userland/Libraries/LibWeb/SVG/SVGElement.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include <LibWeb/HTML/Window.h> +#include <LibWeb/Bindings/Intrinsics.h> #include <LibWeb/SVG/SVGElement.h> namespace Web::SVG { |