From 2e2c717e89ba50676b91c2e42e147bed1b85c3cf Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 3 Mar 2023 19:37:35 +0100 Subject: LibGfx: Remove Font::glyph_height() virtual The override on BitmapFont remains, as that is actually used within the FontEditor program. --- Userland/Libraries/LibGfx/Font/Font.h | 1 - 1 file changed, 1 deletion(-) (limited to 'Userland/Libraries/LibGfx/Font/Font.h') diff --git a/Userland/Libraries/LibGfx/Font/Font.h b/Userland/Libraries/LibGfx/Font/Font.h index 9b88759a04..e60e61b261 100644 --- a/Userland/Libraries/LibGfx/Font/Font.h +++ b/Userland/Libraries/LibGfx/Font/Font.h @@ -175,7 +175,6 @@ public: virtual float glyph_or_emoji_width(Utf8CodePointIterator&) const = 0; virtual float glyph_or_emoji_width(Utf32CodePointIterator&) const = 0; virtual float glyphs_horizontal_kerning(u32 left_code_point, u32 right_code_point) const = 0; - virtual u8 glyph_height() const = 0; virtual int x_height() const = 0; virtual float preferred_line_height() const = 0; -- cgit v1.2.3