mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:07:45 +00:00
Meta+Userland: Pass Gfx::IntPoint by value
This is just two ints or 8 bytes or the size of the reference on x86_64 or AArch64.
This commit is contained in:
parent
bbc149ebb9
commit
7be0b27dd3
161 changed files with 442 additions and 441 deletions
|
@ -140,7 +140,7 @@ private:
|
|||
virtual void show_screen_numbers(bool) override;
|
||||
virtual void set_window_cursor(i32, i32) override;
|
||||
virtual void set_window_custom_cursor(i32, Gfx::ShareableBitmap const&) override;
|
||||
virtual void popup_menu(i32, Gfx::IntPoint const&, Gfx::IntRect const&) override;
|
||||
virtual void popup_menu(i32, Gfx::IntPoint, Gfx::IntRect const&) override;
|
||||
virtual void dismiss_menu(i32) override;
|
||||
virtual void set_window_icon_bitmap(i32, Gfx::ShareableBitmap const&) override;
|
||||
virtual Messages::WindowServer::StartDragResponse start_drag(DeprecatedString const&, HashMap<DeprecatedString, ByteBuffer> const&, Gfx::ShareableBitmap const&) override;
|
||||
|
@ -166,7 +166,7 @@ private:
|
|||
virtual void set_window_progress(i32, Optional<i32> const&) override;
|
||||
virtual void refresh_system_theme() override;
|
||||
virtual void pong() override;
|
||||
virtual void set_global_cursor_position(Gfx::IntPoint const&) override;
|
||||
virtual void set_global_cursor_position(Gfx::IntPoint) override;
|
||||
virtual Messages::WindowServer::GetGlobalCursorPositionResponse get_global_cursor_position() override;
|
||||
virtual void set_mouse_acceleration(float) override;
|
||||
virtual Messages::WindowServer::GetMouseAccelerationResponse get_mouse_acceleration() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue