minor: coding style
This commit is contained in:
parent
ed94e41065
commit
2e7c1239c8
|
@ -210,11 +210,11 @@ hb_ot_get_glyph_name (hb_font_t *font HB_UNUSED,
|
||||||
void *user_data HB_UNUSED)
|
void *user_data HB_UNUSED)
|
||||||
{
|
{
|
||||||
const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
|
const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
|
||||||
hb_bool_t ret = ot_face->post->get_glyph_name (glyph, name, size);
|
if (ot_face->post->get_glyph_name (glyph, name, size)) return true;
|
||||||
#ifndef HB_NO_OT_FONT_CFF
|
#ifndef HB_NO_OT_FONT_CFF
|
||||||
if (!ret) ret = ot_face->cff1->get_glyph_name (glyph, name, size);
|
if (ot_face->cff1->get_glyph_name (glyph, name, size)) return true;
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return false;
|
||||||
}
|
}
|
||||||
static hb_bool_t
|
static hb_bool_t
|
||||||
hb_ot_get_glyph_from_name (hb_font_t *font HB_UNUSED,
|
hb_ot_get_glyph_from_name (hb_font_t *font HB_UNUSED,
|
||||||
|
|
Loading…
Reference in New Issue