* include/freetype/internal/tttypes.h (GX_BlendRec_) [TT_CONFIG_OPTION_GX_VAR_SUPPORT]: Fix a typo. * src/truetype/ttgxvar.h (GX_BlendRec_): Fix a typo.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
diff --git a/ChangeLog b/ChangeLog
index dd1c286..1e54fd8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-04-28 Masatake YAMATO <jet@gyve.org>
+
+ * include/freetype/internal/tttypes.h (GX_BlendRec_)
+ [TT_CONFIG_OPTION_GX_VAR_SUPPORT]: Fix a typo.
+
+ * src/truetype/ttgxvar.h (GX_BlendRec_): Fix a typo.
+
2004-04-27 Masatake YAMATO <jet@gyve.org>
* src/truetype/ttgxvar.h: Use FT_LOCAL instead of FT_LOCAL_DEF
diff --git a/include/freetype/internal/tttypes.h b/include/freetype/internal/tttypes.h
index 6ef7021..4a3aab1 100644
--- a/include/freetype/internal/tttypes.h
+++ b/include/freetype/internal/tttypes.h
@@ -836,7 +836,7 @@ FT_BEGIN_HEADER
#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT
- typedef struct GS_BlendRec_ *GX_Blend;
+ typedef struct GX_BlendRec_ *GX_Blend;
#endif
diff --git a/src/truetype/ttgxvar.h b/src/truetype/ttgxvar.h
index 650cad9..e86c7ee 100644
--- a/src/truetype/ttgxvar.h
+++ b/src/truetype/ttgxvar.h
@@ -78,7 +78,7 @@ FT_BEGIN_HEADER
/* the contribution along each axis to the final */
/* interpolated font. */
/* */
- typedef struct GS_BlendRec_
+ typedef struct GX_BlendRec_
{
FT_UInt num_axis;
FT_Fixed* normalizedcoords;