diff options
author | MacDue <macdue@dueutil.tech> | 2022-12-06 21:35:32 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-07 11:48:27 +0100 |
commit | 27fae783359ece05400dcbee66c50fee97cd1b0b (patch) | |
tree | 7918baf077884d287a8dce3ad7ccad9f9d1aaaf0 /Userland/Applications/Browser/BrowserWindow.h | |
parent | e011eafd3790ca0375a4678a9cb2debd0ae95ac7 (diff) | |
download | serenity-27fae783359ece05400dcbee66c50fee97cd1b0b.zip |
Meta+Userland: Pass Gfx::IntSize by value
Just two ints like Gfx::IntPoint.
Diffstat (limited to 'Userland/Applications/Browser/BrowserWindow.h')
-rw-r--r-- | Userland/Applications/Browser/BrowserWindow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/BrowserWindow.h b/Userland/Applications/Browser/BrowserWindow.h index 19b4c4e6df..82882d5159 100644 --- a/Userland/Applications/Browser/BrowserWindow.h +++ b/Userland/Applications/Browser/BrowserWindow.h @@ -46,7 +46,7 @@ public: void proxy_mappings_changed(); void broadcast_window_position(Gfx::IntPoint); - void broadcast_window_size(Gfx::IntSize const&); + void broadcast_window_size(Gfx::IntSize); private: explicit BrowserWindow(CookieJar&, URL); |