diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-13 16:18:20 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-13 16:58:15 +0200 |
commit | a2baab38fd58e18f690e2256b0a5081580c05968 (patch) | |
tree | ee4585bda0e59a1727f10b1203e540e44a2edafb /Userland/Applications/ThemeEditor | |
parent | 86bdfa1edf21293e2c0f3ca8b31808a21882cb99 (diff) | |
download | serenity-a2baab38fd58e18f690e2256b0a5081580c05968.zip |
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. :^)
Diffstat (limited to 'Userland/Applications/ThemeEditor')
-rw-r--r-- | Userland/Applications/ThemeEditor/PreviewWidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Applications/ThemeEditor/PreviewWidget.cpp b/Userland/Applications/ThemeEditor/PreviewWidget.cpp index fe4e74faf4..b7e62f6fbd 100644 --- a/Userland/Applications/ThemeEditor/PreviewWidget.cpp +++ b/Userland/Applications/ThemeEditor/PreviewWidget.cpp @@ -31,7 +31,7 @@ #include <LibGUI/CheckBox.h> #include <LibGUI/Painter.h> #include <LibGUI/RadioButton.h> -#include <LibGUI/StatusBar.h> +#include <LibGUI/Statusbar.h> #include <LibGUI/TextEditor.h> #include <LibGfx/Bitmap.h> #include <LibGfx/WindowTheme.h> @@ -65,7 +65,7 @@ private: m_checkbox->set_text("Check box"); m_radio = add<GUI::RadioButton>(); m_radio->set_text("Radio button"); - m_statusbar = add<GUI::StatusBar>(); + m_statusbar = add<GUI::Statusbar>(); m_statusbar->set_text("Status bar"); m_editor = add<GUI::TextEditor>(); m_editor->set_text("Text editor\nwith multiple\nlines."); @@ -84,7 +84,7 @@ private: RefPtr<GUI::Button> m_button; RefPtr<GUI::CheckBox> m_checkbox; RefPtr<GUI::RadioButton> m_radio; - RefPtr<GUI::StatusBar> m_statusbar; + RefPtr<GUI::Statusbar> m_statusbar; }; PreviewWidget::PreviewWidget(const Gfx::Palette& preview_palette) |