KeyboardMapper: Remove two useless comments

This commit is contained in:
Linus Groh 2021-05-12 23:05:26 +01:00
parent f47153d437
commit 76c6bc3186
Notes: sideshowbarker 2024-07-18 18:16:46 +09:00

View File

@ -55,7 +55,6 @@ int main(int argc, char** argv)
return 1;
}
// Actions
auto open_action = GUI::CommonActions::make_open_action(
[&](auto&) {
Optional<String> path = GUI::FilePicker::get_open_filepath(window, "Open");
@ -83,7 +82,6 @@ int main(int argc, char** argv)
app->quit();
});
// Menu
auto menubar = GUI::Menubar::construct();
auto& file_menu = menubar->add_menu("&File");