summaryrefslogtreecommitdiff
path: root/Applications/HexEditor
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-04-21 16:01:00 +0200
committerAndreas Kling <kling@serenityos.org>2020-04-21 16:19:18 +0200
commit52a250cb614805134ef7e253a1866d69bcb99b9f (patch)
treeb04b88e62af46c7f67182db79382c4637a7f99be /Applications/HexEditor
parenta19690170f879ee16df5dd910064b00b92f793ca (diff)
downloadserenity-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/HexEditor')
-rw-r--r--Applications/HexEditor/HexEditorWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/HexEditor/HexEditorWidget.cpp b/Applications/HexEditor/HexEditorWidget.cpp
index 0102820adc..43d80dae0a 100644
--- a/Applications/HexEditor/HexEditorWidget.cpp
+++ b/Applications/HexEditor/HexEditorWidget.cpp
@@ -132,7 +132,7 @@ HexEditorWidget::HexEditorWidget()
dbg() << "Wrote document to " << save_path.value();
});
- auto menubar = make<GUI::MenuBar>();
+ auto menubar = GUI::MenuBar::construct();
auto& app_menu = menubar->add_menu("Hex Editor");
app_menu.add_action(*m_new_action);
app_menu.add_action(*m_open_action);