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

LibGfx: Use size_t instead of int for glyph count

The count is always non-negative
This commit is contained in:
Idan Horowitz 2021-04-18 22:11:41 +03:00 committed by Andreas Kling
parent c1971df4c7
commit 3c894d1e6f
3 changed files with 3 additions and 3 deletions

View file

@ -134,7 +134,7 @@ public:
virtual u8 glyph_spacing() const = 0;
virtual int glyph_count() const = 0;
virtual size_t glyph_count() const = 0;
virtual String family() const = 0;
virtual String variant() const = 0;