summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/WindowTheme.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-03-31 23:26:32 +0200
committerAndreas Kling <kling@serenityos.org>2021-03-31 23:38:26 +0200
commitea34ba6fa6a66b53436edefb9c80327660b310f7 (patch)
tree4441d87edef6d6331bad3b2071652d18e53451cf /Userland/Libraries/LibGfx/WindowTheme.h
parent0e798234c7cb45012910584215783694433a7cdc (diff)
downloadserenity-ea34ba6fa6a66b53436edefb9c80327660b310f7.zip
WindowServer+LibGfx: Rename menu_bar => menubar
We had a mix of "menu_bar" and "menubar". Let's just use "menubar" everywhere since that feels the most natural to write.
Diffstat (limited to 'Userland/Libraries/LibGfx/WindowTheme.h')
-rw-r--r--Userland/Libraries/LibGfx/WindowTheme.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/WindowTheme.h b/Userland/Libraries/LibGfx/WindowTheme.h
index 9e60137f36..c69551d7a8 100644
--- a/Userland/Libraries/LibGfx/WindowTheme.h
+++ b/Userland/Libraries/LibGfx/WindowTheme.h
@@ -60,7 +60,7 @@ public:
virtual IntRect title_bar_icon_rect(WindowType, const IntRect& window_rect, const Palette&) const = 0;
virtual IntRect title_bar_text_rect(WindowType, const IntRect& window_rect, const Palette&) const = 0;
- virtual IntRect menu_bar_rect(WindowType, const IntRect& window_rect, const Palette&, int menu_row_count) const = 0;
+ virtual IntRect menubar_rect(WindowType, const IntRect& window_rect, const Palette&, int menu_row_count) const = 0;
virtual IntRect frame_rect_for_window(WindowType, const IntRect& window_rect, const Palette&, int menu_row_count) const = 0;