1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:27:45 +00:00

LibGfx: Remove unused Font::point_size()

This commit is contained in:
Andreas Kling 2023-01-05 17:22:55 +01:00
parent 2a61d66b0a
commit cddcf531b1
3 changed files with 0 additions and 3 deletions

View file

@ -44,7 +44,6 @@ public:
virtual ErrorOr<NonnullRefPtr<Font>> try_clone() const override { return *this; }
virtual u8 presentation_size() const override { return m_point_height; }
virtual float pixel_size() const override { return m_point_height * 1.33333333f; }
virtual float point_size() const override { return m_point_height; }
virtual Gfx::FontPixelMetrics pixel_metrics() const override;
virtual u8 slope() const override { return m_font->slope(); }
virtual u16 weight() const override { return m_font->weight(); }