mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 20:07:34 +00:00
HackStudio+LibGUI: Make fallible TabWidget::add_tab()
non-fallible
This commit is contained in:
parent
dc71ac4d2f
commit
499f459f0b
2 changed files with 3 additions and 4 deletions
|
@ -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); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue