mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:07:44 +00:00
LibGUI+Userland: Make Window::*add_menu take name using new string
This commit is contained in:
parent
60a338758c
commit
969543a847
52 changed files with 162 additions and 162 deletions
|
@ -45,14 +45,14 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
window->set_title("Mail");
|
||||
window->resize(640, 400);
|
||||
|
||||
auto& file_menu = window->add_menu("&File");
|
||||
auto& file_menu = window->add_menu("&File"_short_string);
|
||||
|
||||
file_menu.add_action(GUI::CommonActions::make_quit_action([&](auto&) {
|
||||
mail_widget->on_window_close();
|
||||
app->quit();
|
||||
}));
|
||||
|
||||
auto& help_menu = window->add_menu("&Help");
|
||||
auto& help_menu = window->add_menu("&Help"_short_string);
|
||||
help_menu.add_action(GUI::CommonActions::make_command_palette_action(window));
|
||||
help_menu.add_action(GUI::CommonActions::make_about_action("Mail", app_icon, window));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue