summaryrefslogtreecommitdiff
path: root/Userland/Applications/Calendar/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/Calendar/main.cpp')
-rw-r--r--Userland/Applications/Calendar/main.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Applications/Calendar/main.cpp b/Userland/Applications/Calendar/main.cpp
index 3270a8ac4f..57aceb613e 100644
--- a/Userland/Applications/Calendar/main.cpp
+++ b/Userland/Applications/Calendar/main.cpp
@@ -19,7 +19,6 @@
#include <LibGUI/Toolbar.h>
#include <LibGUI/Window.h>
#include <LibMain/Main.h>
-#include <time.h>
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
@@ -32,8 +31,6 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Core::System::unveil("/res", "r"));
TRY(Core::System::unveil(nullptr, nullptr));
- tzset();
-
auto app_icon = TRY(GUI::Icon::try_create_default_icon("app-calendar"));
auto window = TRY(GUI::Window::try_create());
window->set_title("Calendar");