diff options
author | Andreas Kling <kling@serenityos.org> | 2021-06-11 13:27:47 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-11 22:51:10 +0200 |
commit | 29e80178a8b16fe80b489b886d8cd7b6df5f8999 (patch) | |
tree | 537f85430e2193523ad6e423e02a9208042c1ac3 /Userland/Applications/PixelPaint/EraseTool.h | |
parent | 242742b6c208ae65a55ad714c2b7242636f056a0 (diff) | |
download | serenity-29e80178a8b16fe80b489b886d8cd7b6df5f8999.zip |
PixelPaint: Convert to east-const style
Diffstat (limited to 'Userland/Applications/PixelPaint/EraseTool.h')
-rw-r--r-- | Userland/Applications/PixelPaint/EraseTool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/PixelPaint/EraseTool.h b/Userland/Applications/PixelPaint/EraseTool.h index 4c5cb3f272..80472ddf65 100644 --- a/Userland/Applications/PixelPaint/EraseTool.h +++ b/Userland/Applications/PixelPaint/EraseTool.h @@ -25,7 +25,7 @@ public: private: Gfx::Color get_color() const; - Gfx::IntRect build_rect(const Gfx::IntPoint& pos, const Gfx::IntRect& widget_rect); + Gfx::IntRect build_rect(Gfx::IntPoint const& pos, Gfx::IntRect const& widget_rect); RefPtr<GUI::Menu> m_context_menu; bool m_use_secondary_color { false }; |