summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-05-12 23:28:08 +0200
committerAndreas Kling <kling@serenityos.org>2020-05-12 23:28:08 +0200
commit7dd8f1b921c5c63c21415a6ded179134a18e1ae2 (patch)
tree8fa998f88f80c80a7f1cc6b6b4b90c0953b5ff57 /Libraries/LibGUI
parent35c2d389f59738fec759beb4e6d2858191ab4a4a (diff)
downloadserenity-7dd8f1b921c5c63c21415a6ded179134a18e1ae2.zip
LibGUI: Add missing Vector.h include to Event.h
Diffstat (limited to 'Libraries/LibGUI')
-rw-r--r--Libraries/LibGUI/Event.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibGUI/Event.h b/Libraries/LibGUI/Event.h
index c62d83bc38..c2059558a3 100644
--- a/Libraries/LibGUI/Event.h
+++ b/Libraries/LibGUI/Event.h
@@ -26,6 +26,7 @@
#pragma once
+#include <AK/Vector.h>
#include <Kernel/KeyCode.h>
#include <LibCore/Event.h>
#include <LibGUI/WindowType.h>