From 9a7422c5fb9eefa3c73cde387512e1de4adaa946 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 18 Dec 2022 13:46:32 -0700 Subject: [PATCH] [font] Minor doc fix --- src/hb-font.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hb-font.cc b/src/hb-font.cc index 499c6d9fb..ce2514d5f 100644 --- a/src/hb-font.cc +++ b/src/hb-font.cc @@ -1402,7 +1402,7 @@ hb_font_get_glyph_shape (hb_font_t *font, * hb_font_paint_glyph: * @font: #hb_font_t to work upon * @glyph: The glyph ID - * @funcs: #hb_paint_funcs_t to paint with + * @pfuncs: #hb_paint_funcs_t to paint with * @paint_data: User data to pass to paint callbacks * * Paints the glyph. @@ -1419,10 +1419,10 @@ hb_font_get_glyph_shape (hb_font_t *font, void hb_font_paint_glyph (hb_font_t *font, hb_codepoint_t glyph, - hb_paint_funcs_t *funcs, void *paint_data) + hb_paint_funcs_t *pfuncs, void *paint_data) { // TODO add an adapter for child fonts like get_glyph_shape does - font->get_glyph_paint (glyph, funcs, paint_data); + font->get_glyph_paint (glyph, pfuncs, paint_data); } /* A bit higher-level, and with fallback */