From fb672897f8116e0691564fa18658aec38e9f7c6b Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Wed, 20 Jan 2016 21:13:16 +0100 Subject: [PATCH] [autofix] Complete last autofit commit. Problem reported by Kostya Serebryany . * src/autofit/afshaper.c (af_shaper_get_coverage) [!FT_CONFIG_OPTION_USE_HARFBUZZ]: Update signature. --- ChangeLog | 9 +++++++++ src/autofit/afshaper.c | 4 +++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d2fc27f9f..64fc0ce32 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2016-01-20 Werner Lemberg + + [autofix] Complete last autofit commit. + + Problem reported by Kostya Serebryany . + + * src/autofit/afshaper.c (af_shaper_get_coverage) + [!FT_CONFIG_OPTION_USE_HARFBUZZ]: Update signature. + 2016-01-20 Werner Lemberg Still handle `__FTERRORS_H__'. diff --git a/src/autofit/afshaper.c b/src/autofit/afshaper.c index 95c5d9573..6d13b6585 100644 --- a/src/autofit/afshaper.c +++ b/src/autofit/afshaper.c @@ -576,11 +576,13 @@ FT_Error af_shaper_get_coverage( AF_FaceGlobals globals, AF_StyleClass style_class, - FT_UShort* gstyles ) + FT_UShort* gstyles, + FT_Bool default_script ) { FT_UNUSED( globals ); FT_UNUSED( style_class ); FT_UNUSED( gstyles ); + FT_UNUSED( default_script ); return FT_Err_Ok; }