summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Painting/PaintContext.h
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-01-21 20:55:37 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-22 21:49:54 +0100
commit67cda61b7f63935032b4e946f908df038ac51ff9 (patch)
tree86a0991d8461c0921ca0cd2725b8591216ca141f /Userland/Libraries/LibWeb/Painting/PaintContext.h
parent1e7adf5cb632331fca3532342a18a190325d6746 (diff)
downloadserenity-67cda61b7f63935032b4e946f908df038ac51ff9.zip
Libraries: Add missing headers
A C++ source file containing just #include <LibFoo/Bar.h> should always compile cleanly. This patch adds missing header inclusions that could have caused weird error messages if they were used in a different context. Also, this confused QtCreator.
Diffstat (limited to 'Userland/Libraries/LibWeb/Painting/PaintContext.h')
-rw-r--r--Userland/Libraries/LibWeb/Painting/PaintContext.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Painting/PaintContext.h b/Userland/Libraries/LibWeb/Painting/PaintContext.h
index f6ba50eb87..8750e89650 100644
--- a/Userland/Libraries/LibWeb/Painting/PaintContext.h
+++ b/Userland/Libraries/LibWeb/Painting/PaintContext.h
@@ -26,6 +26,7 @@
#pragma once
+#include <AK/Vector.h>
#include <LibGfx/Forward.h>
#include <LibGfx/Palette.h>
#include <LibGfx/Rect.h>