LibGUI: Remove Menu::try_add_separator()

And fall back to the infallible add_separator().
This commit is contained in:
Andreas Kling 2023-08-14 07:19:40 +02:00
commit 1525fa3b8f
Notes: sideshowbarker 2024-07-17 10:16:43 +09:00
41 changed files with 132 additions and 142 deletions

View file

@ -258,7 +258,7 @@ ErrorOr<void> Toolbar::update_overflow_menu()
TRY(m_overflow_menu->try_add_action(*item->action));
}
if (item->action && peek_item->type == Item::Type::Separator)
TRY(m_overflow_menu->try_add_separator());
m_overflow_menu->add_separator();
}
return {};