summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint/EraseTool.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-06-11 13:27:47 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-11 22:51:10 +0200
commit29e80178a8b16fe80b489b886d8cd7b6df5f8999 (patch)
tree537f85430e2193523ad6e423e02a9208042c1ac3 /Userland/Applications/PixelPaint/EraseTool.h
parent242742b6c208ae65a55ad714c2b7242636f056a0 (diff)
downloadserenity-29e80178a8b16fe80b489b886d8cd7b6df5f8999.zip
PixelPaint: Convert to east-const style
Diffstat (limited to 'Userland/Applications/PixelPaint/EraseTool.h')
-rw-r--r--Userland/Applications/PixelPaint/EraseTool.h2
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 };