From a2baab38fd58e18f690e2256b0a5081580c05968 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 13 Apr 2021 16:18:20 +0200 Subject: Everywhere: It's now "Foobar", not "FooBar", and not "foo bar" I hereby declare these to be full nouns that we don't split, neither by space, nor by underscore: - Breadcrumbbar - Coolbar - Menubar - Progressbar - Scrollbar - Statusbar - Taskbar - Toolbar This patch makes everything consistent by replacing every other variant of these with the proper one. :^) --- Userland/DevTools/Profiler/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Userland/DevTools/Profiler/main.cpp') diff --git a/Userland/DevTools/Profiler/main.cpp b/Userland/DevTools/Profiler/main.cpp index 4666e4ffe5..76c8aff332 100644 --- a/Userland/DevTools/Profiler/main.cpp +++ b/Userland/DevTools/Profiler/main.cpp @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include #include #include @@ -140,7 +140,7 @@ int main(int argc, char** argv) individual_sample_view.set_model(move(model)); }; - auto menubar = GUI::MenuBar::construct(); + auto menubar = GUI::Menubar::construct(); auto& app_menu = menubar->add_menu("&File"); app_menu.add_action(GUI::CommonActions::make_quit_action([&](auto&) { app->quit(); })); -- cgit v1.2.3