summaryrefslogtreecommitdiff
path: root/DevTools/VisualBuilder/main.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-09-01 13:25:54 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-09-01 13:25:54 +0200
commit16628d0f8fba8346e0a0f9e2f0d0f5e5cec4c5df (patch)
tree95b5c57d8dff0a688d0c31ea96dea78dac6b4305 /DevTools/VisualBuilder/main.cpp
parent353bf573784ff0914dad53dc24c6cb95a4a254f2 (diff)
downloadserenity-16628d0f8fba8346e0a0f9e2f0d0f5e5cec4c5df.zip
VisualBuilder: Remove empty "Edit" menu
There was nothing in there anyway. We can add it back when we have some edit actions :^)
Diffstat (limited to 'DevTools/VisualBuilder/main.cpp')
-rw-r--r--DevTools/VisualBuilder/main.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/DevTools/VisualBuilder/main.cpp b/DevTools/VisualBuilder/main.cpp
index b456573e56..8a7b029f2e 100644
--- a/DevTools/VisualBuilder/main.cpp
+++ b/DevTools/VisualBuilder/main.cpp
@@ -45,9 +45,6 @@ int main(int argc, char** argv)
}));
menubar->add_menu(move(file_menu));
- auto edit_menu = make<GMenu>("Edit");
- menubar->add_menu(move(edit_menu));
-
auto help_menu = make<GMenu>("Help");
help_menu->add_action(GAction::create("About", [](const GAction&) {
dbgprintf("FIXME: Implement Help/About\n");