diff options
author | cflip <cflip@cflip.net> | 2022-04-12 18:01:35 -0600 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-04-15 08:24:20 -0400 |
commit | 0a92dbd390a0f228902675700df7cbd9fdd507de (patch) | |
tree | 82c1c36df4932f01ad0263b491a024caa875434c /Userland/Applications/ClockSettings/ClockSettingsWidget.h | |
parent | b2ef7ee53172599e874c24e1efbf61e0ac0f4a40 (diff) | |
download | serenity-0a92dbd390a0f228902675700df7cbd9fdd507de.zip |
ClockSettings: Add 'show seconds' toggle to time format settings
Diffstat (limited to 'Userland/Applications/ClockSettings/ClockSettingsWidget.h')
-rw-r--r-- | Userland/Applications/ClockSettings/ClockSettingsWidget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Applications/ClockSettings/ClockSettingsWidget.h b/Userland/Applications/ClockSettings/ClockSettingsWidget.h index 35f5becc62..3017b489e6 100644 --- a/Userland/Applications/ClockSettings/ClockSettingsWidget.h +++ b/Userland/Applications/ClockSettings/ClockSettingsWidget.h @@ -18,7 +18,10 @@ private: virtual void apply_settings() override; virtual void reset_default_values() override; + void update_time_format_string(); + RefPtr<GUI::RadioButton> m_24_hour_radio; + RefPtr<GUI::CheckBox> m_show_seconds_checkbox; RefPtr<GUI::TextBox> m_custom_format_input; String m_date_format; |