vcl/inc/glyphid.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit ba02639c9c17d75e73fc2eff83e64c116fcdaeb2 Author: Khaled Hosny <[email protected]> AuthorDate: Wed Sep 7 11:00:26 2022 +0200 Commit: خالد حسني <[email protected]> CommitDate: Thu Sep 8 03:33:39 2022 +0200 vcl: Make glyph IDs 32bit 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: خالد حسني <[email protected]> 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 <sal/types.h> -typedef sal_uInt16 sal_GlyphId; +typedef uint32_t sal_GlyphId; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
