1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 08:27:46 +00:00

Userland: Make Window::set_main_widget() non-fallible

This commit is contained in:
Tim Ledbetter 2023-09-19 01:13:48 +01:00 committed by Andreas Kling
parent c9297126db
commit 3aa49f268c
120 changed files with 144 additions and 133 deletions

View file

@ -39,7 +39,7 @@ ClockWidget::ClockWidget()
m_calendar_window->set_window_type(GUI::WindowType::Popup);
m_calendar_window->resize(m_window_size.width(), m_window_size.height());
auto root_container = m_calendar_window->set_main_widget<GUI::Frame>().release_value_but_fixme_should_propagate_errors();
auto root_container = m_calendar_window->set_main_widget<GUI::Frame>();
root_container->set_fill_with_background_color(true);
root_container->set_layout<GUI::VerticalBoxLayout>(GUI::Margins { 2, 0 }, 0);
root_container->set_frame_style(Gfx::FrameStyle::Window);

View file

@ -41,7 +41,7 @@ Optional<ShutdownDialog::Command const&> ShutdownDialog::show()
ShutdownDialog::ShutdownDialog()
: Dialog(nullptr)
{
auto widget = set_main_widget<GUI::Widget>().release_value_but_fixme_should_propagate_errors();
auto widget = set_main_widget<GUI::Widget>();
widget->set_fill_with_background_color(true);
widget->set_layout<GUI::VerticalBoxLayout>(GUI::Margins {}, 0);

View file

@ -72,7 +72,7 @@ TaskbarWindow::TaskbarWindow()
ErrorOr<void> TaskbarWindow::populate_taskbar()
{
auto main_widget = TRY(set_main_widget<TaskbarWidget>());
auto main_widget = set_main_widget<TaskbarWidget>();
main_widget->set_layout<GUI::HorizontalBoxLayout>(GUI::Margins { 2, 3, 0, 3 });
m_quick_launch = TRY(Taskbar::QuickLaunchWidget::create());