[autofit] Minor.
* src/autofit/afmodule.c (af_property_set): Typo. (af_autofitter_init, af_autofitter_done): Use cast.
This commit is contained in:
parent
eb624d7c17
commit
fbb0773cb1
|
@ -1,3 +1,10 @@
|
|||
2013-03-23 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[autofit] Minor.
|
||||
|
||||
* src/autofit/afmodule.c (af_property_set): Typo.
|
||||
(af_autofitter_init, af_autofitter_done): Use cast.
|
||||
|
||||
2013-03-21 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* configure: Automatically test for `gmake' also.
|
||||
|
|
|
@ -110,7 +110,7 @@
|
|||
return error;
|
||||
}
|
||||
|
||||
FT_TRACE0(( "af_property_get: missing property `%s'\n",
|
||||
FT_TRACE0(( "af_property_set: missing property `%s'\n",
|
||||
property_name ));
|
||||
return FT_THROW( Missing_Property );
|
||||
}
|
||||
|
@ -201,8 +201,11 @@
|
|||
|
||||
|
||||
FT_CALLBACK_DEF( FT_Error )
|
||||
af_autofitter_init( AF_Module module )
|
||||
af_autofitter_init( FT_Module ft_module ) /* AF_Module */
|
||||
{
|
||||
AF_Module module = (AF_Module)ft_module;
|
||||
|
||||
|
||||
module->fallback_script = AF_SCRIPT_FALLBACK;
|
||||
|
||||
return af_loader_init( module );
|
||||
|
@ -210,8 +213,11 @@
|
|||
|
||||
|
||||
FT_CALLBACK_DEF( void )
|
||||
af_autofitter_done( AF_Module module )
|
||||
af_autofitter_done( FT_Module ft_module ) /* AF_Module */
|
||||
{
|
||||
AF_Module module = (AF_Module)ft_module;
|
||||
|
||||
|
||||
af_loader_done( module );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue