Browse Source

LibGfx: Remove unused cruft from Painter.h

Andreas Kling 1 year ago
parent
commit
2f23912a55
1 changed files with 0 additions and 4 deletions
  1. 0 4
      Userland/Libraries/LibGfx/Painter.h

+ 0 - 4
Userland/Libraries/LibGfx/Painter.h

@@ -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);
-
 }