From 11580babbfb1b8ae0acab2400f11d905c35642f5 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 6 Feb 2020 11:56:38 +0100 Subject: LibDraw: Put all classes in the Gfx namespace I started adding things to a Draw namespace, but it somehow felt really wrong seeing Draw::Rect and Draw::Bitmap, etc. So instead, let's rename the library to LibGfx. :^) --- Applications/PaintBrush/EraseTool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Applications/PaintBrush/EraseTool.h') diff --git a/Applications/PaintBrush/EraseTool.h b/Applications/PaintBrush/EraseTool.h index 576a1f5b46..89ebbbc047 100644 --- a/Applications/PaintBrush/EraseTool.h +++ b/Applications/PaintBrush/EraseTool.h @@ -46,7 +46,7 @@ public: private: Color get_color() const; virtual const char* class_name() const override { return "EraseTool"; } - Rect build_rect(const Point& pos, const Rect& widget_rect); + Rect build_rect(const Gfx::Point& pos, const Gfx::Rect& widget_rect); RefPtr m_context_menu; bool m_use_secondary_color { true }; -- cgit v1.2.3