summaryrefslogtreecommitdiff
path: root/Userland/Demos/LibGfxDemo/main.cpp
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-05-12 17:50:48 +0100
committerLinus Groh <mail@linusgroh.de>2021-05-12 17:50:48 +0100
commitff1d3f53c48fc21321f29bf41a2e0052dccb3970 (patch)
tree38f4c2ca0a6dee6e3d4ba4086f73877603fa63d5 /Userland/Demos/LibGfxDemo/main.cpp
parent790d68ac5efed1880c42fe64ae6e75da49753964 (diff)
downloadserenity-ff1d3f53c48fc21321f29bf41a2e0052dccb3970.zip
Everywhere: Rename app_menu to file_menu, continued
These were missed in 4b0098e.
Diffstat (limited to 'Userland/Demos/LibGfxDemo/main.cpp')
-rw-r--r--Userland/Demos/LibGfxDemo/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Demos/LibGfxDemo/main.cpp b/Userland/Demos/LibGfxDemo/main.cpp
index 34acadd7f4..d1fbe9e24c 100644
--- a/Userland/Demos/LibGfxDemo/main.cpp
+++ b/Userland/Demos/LibGfxDemo/main.cpp
@@ -206,8 +206,8 @@ int main(int argc, char** argv)
window->resize(WIDTH, HEIGHT);
auto menubar = GUI::Menubar::construct();
- auto& app_menu = menubar->add_menu("File");
- app_menu.add_action(GUI::CommonActions::make_quit_action([&](auto&) { app->quit(); }));
+ auto& file_menu = menubar->add_menu("File");
+ file_menu.add_action(GUI::CommonActions::make_quit_action([&](auto&) { app->quit(); }));
window->set_menubar(move(menubar));
auto app_icon = GUI::Icon::default_icon("app-libgfx-demo");