From ba02639c9c17d75e73fc2eff83e64c116fcdaeb2 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Wed, 7 Sep 2022 11:00:26 +0200 Subject: vcl: Make glyph IDs 32bit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To match corresponding HarfBuzz and Cairo types, and would eventually help us in supporting fonts with more than 65535 glyphs (currently supported only by HarfBuzz). Change-Id: I239421bcef6e1b26f17a4666243a239174ea4943 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139576 Tested-by: Jenkins Reviewed-by: خالد حسني --- vcl/inc/glyphid.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl/inc/glyphid.hxx') diff --git a/vcl/inc/glyphid.hxx b/vcl/inc/glyphid.hxx index 6f32a429dde4..565beb618327 100644 --- a/vcl/inc/glyphid.hxx +++ b/vcl/inc/glyphid.hxx @@ -21,6 +21,6 @@ #include -typedef sal_uInt16 sal_GlyphId; +typedef uint32_t sal_GlyphId; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit