mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibGUI+Applications: Use String in make_about_action()
This commit is contained in:
parent
e7a5a2e146
commit
ccab5ddf9b
Notes:
sideshowbarker
2024-07-17 08:27:05 +09:00
Author: https://github.com/tcl3
Commit: ccab5ddf9b
Pull-request: https://github.com/SerenityOS/serenity/pull/21062
Reviewed-by: https://github.com/shannonbooth
53 changed files with 60 additions and 60 deletions
|
@ -468,7 +468,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
|
||||
auto help_menu = window->add_menu("&Help"_string);
|
||||
help_menu->add_action(GUI::CommonActions::make_command_palette_action(window));
|
||||
help_menu->add_action(GUI::CommonActions::make_about_action("System Monitor", app_icon, window));
|
||||
help_menu->add_action(GUI::CommonActions::make_about_action("System Monitor"_string, app_icon, window));
|
||||
|
||||
process_table_view.on_activation = [&](auto&) {
|
||||
if (process_properties_action->is_enabled())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue