LibGfx: Remove unused cruft from Painter.h

This commit is contained in:
Andreas Kling 2024-06-05 10:33:57 +02:00 committed by Andreas Kling
parent fe4cc32380
commit 2f23912a55
Notes: sideshowbarker 2024-07-17 22:41:14 +09:00

View File

@ -45,8 +45,6 @@ ALWAYS_INLINE static Color color_for_format(BitmapFormat format, ARGB32 value)
class Painter {
public:
static constexpr int LINE_SPACING = 4;
explicit Painter(Gfx::Bitmap&);
~Painter() = default;
@ -166,6 +164,4 @@ private:
Painter& m_painter;
};
ByteString parse_ampersand_string(StringView, Optional<size_t>* underline_offset = nullptr);
}