mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 12:05:00 +00:00
LibGUI: Cast unused smart-pointer return values to void
This commit is contained in:
parent
907feb84a0
commit
d95e50643e
4 changed files with 5 additions and 5 deletions
|
@ -26,7 +26,7 @@ ErrorOr<NonnullRefPtr<SettingsWindow>> SettingsWindow::create(String title, Show
|
|||
|
||||
auto main_widget = TRY(window->try_set_main_widget<GUI::Widget>());
|
||||
main_widget->set_fill_with_background_color(true);
|
||||
TRY(main_widget->try_set_layout<GUI::VerticalBoxLayout>());
|
||||
(void)TRY(main_widget->try_set_layout<GUI::VerticalBoxLayout>());
|
||||
main_widget->layout()->set_margins(4);
|
||||
main_widget->layout()->set_spacing(6);
|
||||
|
||||
|
@ -34,7 +34,7 @@ ErrorOr<NonnullRefPtr<SettingsWindow>> SettingsWindow::create(String title, Show
|
|||
|
||||
auto button_container = TRY(main_widget->try_add<GUI::Widget>());
|
||||
button_container->set_shrink_to_fit(true);
|
||||
TRY(button_container->try_set_layout<GUI::HorizontalBoxLayout>());
|
||||
(void)TRY(button_container->try_set_layout<GUI::HorizontalBoxLayout>());
|
||||
button_container->layout()->set_spacing(6);
|
||||
|
||||
if (show_defaults_button == ShowDefaultsButton::Yes) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue