1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:57:44 +00:00

Userland: Use non-fallible EventReceiver::add() where possible

This commit is contained in:
Tim Ledbetter 2023-09-22 22:28:59 +01:00 committed by Andreas Kling
parent 707ca984bd
commit b4e134cb52
54 changed files with 934 additions and 934 deletions

View file

@ -45,10 +45,10 @@ ErrorOr<void> PlayerWidget::initialize()
set_fill_with_background_color(true);
TRY(m_track_number_choices.try_append("1"));
RefPtr<GUI::Label> label = TRY(try_add<GUI::Label>("Track"_string));
RefPtr<GUI::Label> label = add<GUI::Label>("Track"_string);
label->set_max_width(75);
m_track_dropdown = TRY(try_add<GUI::ComboBox>());
m_track_dropdown = add<GUI::ComboBox>();
m_track_dropdown->set_max_width(75);
m_track_dropdown->set_model(*GUI::ItemListModel<DeprecatedString>::create(m_track_number_choices));
m_track_dropdown->set_only_allow_values_from_model(true);
@ -59,7 +59,7 @@ ErrorOr<void> PlayerWidget::initialize()
m_main_widget.update_selected_track();
};
m_add_track_button = TRY(try_add<GUI::Button>());
m_add_track_button = add<GUI::Button>();
m_add_track_button->set_icon(*m_add_track_icon);
m_add_track_button->set_fixed_width(30);
m_add_track_button->set_tooltip_deprecated("Add Track");
@ -68,7 +68,7 @@ ErrorOr<void> PlayerWidget::initialize()
add_track();
};
m_next_track_button = TRY(try_add<GUI::Button>());
m_next_track_button = add<GUI::Button>();
m_next_track_button->set_icon(*m_next_track_icon);
m_next_track_button->set_fixed_width(30);
m_next_track_button->set_tooltip_deprecated("Next Track");
@ -77,7 +77,7 @@ ErrorOr<void> PlayerWidget::initialize()
next_track();
};
m_play_button = TRY(try_add<GUI::Button>());
m_play_button = add<GUI::Button>();
m_play_button->set_icon(*m_pause_icon);
m_play_button->set_fixed_width(30);
m_play_button->set_tooltip_deprecated("Play/Pause playback");
@ -92,7 +92,7 @@ ErrorOr<void> PlayerWidget::initialize()
}
};
m_back_button = TRY(try_add<GUI::Button>());
m_back_button = add<GUI::Button>();
m_back_button->set_icon(*m_back_icon);
m_back_button->set_fixed_width(30);
m_back_button->set_tooltip_deprecated("Previous Note");
@ -101,7 +101,7 @@ ErrorOr<void> PlayerWidget::initialize()
m_track_manager.time_forward(-(sample_rate / (beats_per_minute / 60) / notes_per_beat));
};
m_next_button = TRY(try_add<GUI::Button>());
m_next_button = add<GUI::Button>();
m_next_button->set_icon(*m_next_icon);
m_next_button->set_fixed_width(30);
m_next_button->set_tooltip_deprecated("Next Note");