diff options
author | Andreas Kling <kling@serenityos.org> | 2021-03-31 23:26:32 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-31 23:38:26 +0200 |
commit | ea34ba6fa6a66b53436edefb9c80327660b310f7 (patch) | |
tree | 4441d87edef6d6331bad3b2071652d18e53451cf /Userland/Libraries/LibGfx/WindowTheme.h | |
parent | 0e798234c7cb45012910584215783694433a7cdc (diff) | |
download | serenity-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.h | 2 |
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; |