summaryrefslogtreecommitdiff
path: root/Userland/Applications/CalendarSettings/CalendarSettingsWidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/CalendarSettings/CalendarSettingsWidget.cpp')
-rw-r--r--Userland/Applications/CalendarSettings/CalendarSettingsWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/CalendarSettings/CalendarSettingsWidget.cpp b/Userland/Applications/CalendarSettings/CalendarSettingsWidget.cpp
index 631f74e166..0da16236d2 100644
--- a/Userland/Applications/CalendarSettings/CalendarSettingsWidget.cpp
+++ b/Userland/Applications/CalendarSettings/CalendarSettingsWidget.cpp
@@ -31,7 +31,7 @@ void CalendarSettingsWidget::reset_default_values()
CalendarSettingsWidget::CalendarSettingsWidget()
{
- load_from_gml(calendar_settings_widget_gml);
+ try_load_from_gml(calendar_settings_widget_gml).release_value_but_fixme_should_propagate_errors();
m_first_day_of_week_combobox = *find_descendant_of_type_named<GUI::ComboBox>("first_day_of_week");
m_first_day_of_week_combobox->set_text(Config::read_string("Calendar"sv, "View"sv, "FirstDayOfWeek"sv, "Sunday"sv));