diff options
Diffstat (limited to 'Userland/Applications/CalendarSettings/CalendarSettingsWidget.h')
-rw-r--r-- | Userland/Applications/CalendarSettings/CalendarSettingsWidget.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Userland/Applications/CalendarSettings/CalendarSettingsWidget.h b/Userland/Applications/CalendarSettings/CalendarSettingsWidget.h index 494597100a..d3215df51f 100644 --- a/Userland/Applications/CalendarSettings/CalendarSettingsWidget.h +++ b/Userland/Applications/CalendarSettings/CalendarSettingsWidget.h @@ -1,12 +1,12 @@ /* * Copyright (c) 2022-2022, Olivier De Cannière <olivier.decanniere96@gmail.com> + * Copyright (c) 2022, Tobias Christiansen <tobyase@serenityos.org> * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once -#include <LibGUI/ComboBox.h> #include <LibGUI/SettingsWindow.h> class CalendarSettingsWidget final : public GUI::SettingsWindow::Tab { @@ -21,5 +21,7 @@ private: static constexpr Array<StringView, 2> const m_view_modes = { "Month"sv, "Year"sv }; RefPtr<GUI::ComboBox> m_first_day_of_week_combobox; + RefPtr<GUI::ComboBox> m_first_day_of_weekend_combobox; + RefPtr<GUI::SpinBox> m_weekend_length_spinbox; RefPtr<GUI::ComboBox> m_default_view_combobox; }; |