summaryrefslogtreecommitdiff
path: root/src/cid/cidriver.c
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2003-11-01 14:36:20 +0000
committerWerner Lemberg <wl@gnu.org>2003-11-01 14:36:20 +0000
commit40bb0964f2885a2cf5dcc4881448c4089761b577 (patch)
treee730f37d2acdf2fadc4dae84483325f62e70e056 /src/cid/cidriver.c
parent7760595f84a8edc365f280a9358d4075d42d51ea (diff)
downloadfreetype2-40bb0964f2885a2cf5dcc4881448c4089761b577.tar.gz
* src/base/fttype1.c (FT_Get_PS_Font_Info, FT_Has_PS_Glyph_Names):
Fix parameter order in calls to FT_FACE_FIND_SERVICE. * include/freetype/internal/ftserv.h (FT_SERVICE_POSTSCRIPT_NAMES_H): Removed. Unused. * src/type42/t42drivr.c (t42_services): Updated.
Diffstat (limited to 'src/cid/cidriver.c')
-rw-r--r--src/cid/cidriver.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cid/cidriver.c b/src/cid/cidriver.c
index 2f3908aa5..f5639b9f7 100644
--- a/src/cid/cidriver.c
+++ b/src/cid/cidriver.c
@@ -75,10 +75,11 @@
return 0;
}
+
static const FT_Service_PsInfoRec cid_service_ps_info =
{
- (PS_GetFontInfoFunc) cid_ps_get_font_info,
- (PS_HasGlyphNamesFunc) NULL /* unsupported with CID fonts */
+ (PS_GetFontInfoFunc) cid_ps_get_font_info,
+ (PS_HasGlyphNamesFunc)NULL /* unsupported with CID fonts */
};