Changed function get_cff_glyph_name to cff_get_glyph_name for

consistency.

Minor documentation change for function cff_get_glyph_index.
This commit is contained in:
Tom Kacvinsky 2001-08-09 01:13:43 +00:00
parent cfcec824eb
commit aea07ccdba
1 changed files with 3 additions and 3 deletions

View File

@ -222,7 +222,7 @@
/*************************************************************************/
static FT_Error
get_cff_glyph_name( CFF_Face face,
cff_get_glyph_name( CFF_Face face,
FT_UInt glyph_index,
FT_Pointer buffer,
FT_UInt buffer_max )
@ -327,7 +327,7 @@
/* a given glyph name's glyph index. */
/* */
/* <Input> */
/* charmap :: A handle to the source face object. */
/* face :: A handle to the source face object. */
/* glyph_name :: The glyph name. */
/* */
/* <Return> */
@ -387,7 +387,7 @@
#ifndef FT_CONFIG_OPTION_NO_GLYPH_NAMES
if ( strcmp( (const char*)interface, "glyph_name" ) == 0 )
return (FT_Module_Interface)get_cff_glyph_name;
return (FT_Module_Interface)cff_get_glyph_name;
if ( strcmp( (const char*)interface, "name_index" ) == 0 )
return (FT_Module_Interface)cff_get_name_index;