diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/autofit/afcjk.c | 6 | ||||
-rw-r--r-- | src/autofit/aflatin.c | 6 |
3 files changed, 15 insertions, 4 deletions
@@ -1,3 +1,10 @@ +2011-03-18 Werner Lemberg <wl@gnu.org> + + C++ compilation fixes. + + * src/autofit/aflatin.c (af_latin_hints_apply), src/autofit/afcjk.c + (af_cjk_hints_apply): Use cast for `dim'. + 2011-03-17 Alexei Podtelezhnikov <apodtele@gmail.com> A better fix for Savannah bug #32671. diff --git a/src/autofit/afcjk.c b/src/autofit/afcjk.c index 0fcee4d8..d8aa52d3 100644 --- a/src/autofit/afcjk.c +++ b/src/autofit/afcjk.c @@ -1406,8 +1406,10 @@ FT_Pos delta; - af_warper_compute( &warper, hints, dim, &scale, &delta ); - af_glyph_hints_scale_dim( hints, dim, scale, delta ); + af_warper_compute( &warper, hints, (AF_Dimension)dim, + &scale, &delta ); + af_glyph_hints_scale_dim( hints, (AF_Dimension)dim, + scale, delta ); continue; } #endif /* AF_CONFIG_OPTION_USE_WARPER */ diff --git a/src/autofit/aflatin.c b/src/autofit/aflatin.c index 116c6c55..59176fb6 100644 --- a/src/autofit/aflatin.c +++ b/src/autofit/aflatin.c @@ -2207,8 +2207,10 @@ FT_Pos delta; - af_warper_compute( &warper, hints, dim, &scale, &delta ); - af_glyph_hints_scale_dim( hints, dim, scale, delta ); + af_warper_compute( &warper, hints, (AF_Dimension)dim, + &scale, &delta ); + af_glyph_hints_scale_dim( hints, (AF_Dimension)dim, + scale, delta ); continue; } #endif |