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

HackStudio+LibGUI: Make fallible TabWidget::add_tab() non-fallible

This commit is contained in:
Tim Ledbetter 2023-09-14 08:29:47 +01:00 committed by Andreas Kling
parent dc71ac4d2f
commit 499f459f0b
2 changed files with 3 additions and 4 deletions

View file

@ -64,11 +64,10 @@ public:
return *t;
}
ErrorOr<void> add_tab(NonnullRefPtr<Widget> const& tab, String title)
void add_tab(NonnullRefPtr<Widget> const& tab, String title)
{
tab->set_title(move(title));
TRY(try_add_widget(*tab));
return {};
add_widget(*tab);
}
void remove_tab(Widget& tab) { remove_widget(tab); }