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/Applications/Help/main.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Userland/Applications/Help') diff --git a/Userland/Applications/Help/main.cpp b/Userland/Applications/Help/main.cpp index 22e6f83407..05f5d3c075 100644 --- a/Userland/Applications/Help/main.cpp +++ b/Userland/Applications/Help/main.cpp @@ -36,13 +36,13 @@ #include #include #include -#include +#include #include #include #include #include -#include -#include +#include +#include #include #include #include @@ -107,8 +107,8 @@ int main(int argc, char* argv[]) widget.set_fill_with_background_color(true); widget.layout()->set_spacing(2); - auto& toolbar_container = widget.add(); - auto& toolbar = toolbar_container.add(); + auto& toolbar_container = widget.add(); + auto& toolbar = toolbar_container.add(); auto& splitter = widget.add(); @@ -272,7 +272,7 @@ int main(int argc, char* argv[]) toolbar.add_action(*go_forward_action); toolbar.add_action(*go_home_action); - auto menubar = GUI::MenuBar::construct(); + auto menubar = GUI::Menubar::construct(); auto& app_menu = menubar->add_menu("File"); app_menu.add_action(GUI::CommonActions::make_about_action("Help", app_icon, window)); -- cgit v1.2.3