diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-07-31 03:52:33 -0700 |
---|---|---|
committer | Gunnar Beutner <gunnar@beutner.name> | 2021-08-01 08:10:16 +0200 |
commit | a51e6547aa337ee3286d8ac5da162cede517c877 (patch) | |
tree | 6607ffd572056aaebc3e2b834a98bf596d2614ef /Userland/Applications/Calendar | |
parent | 4374e1e213c81791be4c44e27ce05cc2e30896a7 (diff) | |
download | serenity-a51e6547aa337ee3286d8ac5da162cede517c877.zip |
Applications: Remove unused header includes
Diffstat (limited to 'Userland/Applications/Calendar')
-rw-r--r-- | Userland/Applications/Calendar/AddEventDialog.cpp | 2 | ||||
-rw-r--r-- | Userland/Applications/Calendar/main.cpp | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Applications/Calendar/AddEventDialog.cpp b/Userland/Applications/Calendar/AddEventDialog.cpp index 9f972ea291..be50d4067d 100644 --- a/Userland/Applications/Calendar/AddEventDialog.cpp +++ b/Userland/Applications/Calendar/AddEventDialog.cpp @@ -10,14 +10,12 @@ #include <LibGUI/Button.h> #include <LibGUI/ComboBox.h> #include <LibGUI/Label.h> -#include <LibGUI/Layout.h> #include <LibGUI/Painter.h> #include <LibGUI/SpinBox.h> #include <LibGUI/TextBox.h> #include <LibGUI/Widget.h> #include <LibGUI/Window.h> #include <LibGfx/Color.h> -#include <LibGfx/Font.h> #include <LibGfx/FontDatabase.h> static const char* short_month_names[] = { diff --git a/Userland/Applications/Calendar/main.cpp b/Userland/Applications/Calendar/main.cpp index 4d0221c179..ec48c5e48a 100644 --- a/Userland/Applications/Calendar/main.cpp +++ b/Userland/Applications/Calendar/main.cpp @@ -16,7 +16,6 @@ #include <LibGUI/Menu.h> #include <LibGUI/Menubar.h> #include <LibGUI/Toolbar.h> -#include <LibGUI/ToolbarContainer.h> #include <LibGUI/Window.h> #include <unistd.h> |