diff options
author | Andreas Kling <kling@serenityos.org> | 2023-03-03 19:37:35 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-03-04 00:29:38 +0100 |
commit | 2e2c717e89ba50676b91c2e42e147bed1b85c3cf (patch) | |
tree | 1004d332195d9c3ab31240097c2aebe542cfb80d /Userland/Libraries/LibGfx/Font/Font.h | |
parent | b71c7a6e44981c35ae93c91944e6cff70006285d (diff) | |
download | serenity-2e2c717e89ba50676b91c2e42e147bed1b85c3cf.zip |
LibGfx: Remove Font::glyph_height() virtual
The override on BitmapFont remains, as that is actually used within
the FontEditor program.
Diffstat (limited to 'Userland/Libraries/LibGfx/Font/Font.h')
-rw-r--r-- | Userland/Libraries/LibGfx/Font/Font.h | 1 |
1 files changed, 0 insertions, 1 deletions
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; |