Parcourir la source

LibGfx: Remove unused cruft from Painter.h

Andreas Kling il y a 1 an
Parent
commit
2f23912a55
1 fichiers modifiés avec 0 ajouts et 4 suppressions
  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);
-
 }