diff options
author | Andreas Kling <kling@serenityos.org> | 2020-04-21 16:01:00 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-21 16:19:18 +0200 |
commit | 52a250cb614805134ef7e253a1866d69bcb99b9f (patch) | |
tree | b04b88e62af46c7f67182db79382c4637a7f99be /Applications/FontEditor | |
parent | a19690170f879ee16df5dd910064b00b92f793ca (diff) | |
download | serenity-52a250cb614805134ef7e253a1866d69bcb99b9f.zip |
LibGUI: Make MenuBar a Core::Object
This makes it show up in Inspector with all the menus inside it. :^)
Diffstat (limited to 'Applications/FontEditor')
-rw-r--r-- | Applications/FontEditor/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/FontEditor/main.cpp b/Applications/FontEditor/main.cpp index da5f4a3850..9185733d33 100644 --- a/Applications/FontEditor/main.cpp +++ b/Applications/FontEditor/main.cpp @@ -74,7 +74,7 @@ int main(int argc, char** argv) window->show(); window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-font-editor.png")); - auto menubar = make<GUI::MenuBar>(); + auto menubar = GUI::MenuBar::construct(); auto& app_menu = menubar->add_menu("Font Editor"); app_menu.add_action(GUI::CommonActions::make_quit_action([](auto&) { |