summaryrefslogtreecommitdiff
path: root/src/type1/t1driver.c
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2013-03-14 11:21:17 +0100
committerWerner Lemberg <wl@gnu.org>2013-03-14 11:21:17 +0100
commite3c9301581a450fae5db73a3b94b10ed6a0aeb5e (patch)
treedc078dba342716dbc7508c54277376d25b23c931 /src/type1/t1driver.c
parent059bc335ce42220b222763379e89d0cbf2b949eb (diff)
downloadfreetype2-e3c9301581a450fae5db73a3b94b10ed6a0aeb5e.tar.gz
*/*: Use FT_Err_Ok only.
This is a purely mechanical conversion.
Diffstat (limited to 'src/type1/t1driver.c')
-rw-r--r--src/type1/t1driver.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/type1/t1driver.c b/src/type1/t1driver.c
index e35d7b11d..1f81df829 100644
--- a/src/type1/t1driver.c
+++ b/src/type1/t1driver.c
@@ -4,7 +4,7 @@
/* */
/* Type 1 driver interface (body). */
/* */
-/* Copyright 1996-2004, 2006, 2007, 2009, 2011 by */
+/* Copyright 1996-2004, 2006, 2007, 2009, 2011, 2013 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@@ -61,7 +61,7 @@
{
FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max );
- return T1_Err_Ok;
+ return FT_Err_Ok;
}
@@ -138,7 +138,7 @@
{
*afont_info = ((T1_Face)face)->type1.font_info;
- return T1_Err_Ok;
+ return FT_Err_Ok;
}
@@ -148,7 +148,7 @@
{
*afont_extra = ((T1_Face)face)->type1.font_extra;
- return T1_Err_Ok;
+ return FT_Err_Ok;
}
@@ -167,7 +167,7 @@
{
*afont_private = ((T1_Face)face)->type1.private_dict;
- return T1_Err_Ok;
+ return FT_Err_Ok;
}
@@ -669,7 +669,7 @@
right_glyph,
kerning );
- return T1_Err_Ok;
+ return FT_Err_Ok;
}