diff options
Diffstat (limited to 'Userland/Applications/PixelPaint/RectangleSelectTool.h')
-rw-r--r-- | Userland/Applications/PixelPaint/RectangleSelectTool.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Applications/PixelPaint/RectangleSelectTool.h b/Userland/Applications/PixelPaint/RectangleSelectTool.h index 6011d2f199..2bfe4324b9 100644 --- a/Userland/Applications/PixelPaint/RectangleSelectTool.h +++ b/Userland/Applications/PixelPaint/RectangleSelectTool.h @@ -21,13 +21,9 @@ public: virtual void on_second_paint(Layer const&, GUI::PaintEvent&) override; private: - void draw_marching_ants(Gfx::Painter&, Gfx::IntRect const&) const; - bool m_selecting { false }; Gfx::IntPoint m_selection_start; Gfx::IntPoint m_selection_end; - RefPtr<Core::Timer> m_marching_ants_timer; - int m_marching_ants_offset { 0 }; }; } |