Chain up from finalize. (#307547, Paolo Borelli)
2005-06-14 Owen Taylor <otaylor@redhat.com> * pango/opentype/pango-ot-info.c (pango_ot_info_finalize) pango/opentype/pango-ot-ruleset.c (pango_ot_ruleset_finalize): Chain up from finalize. (#307547, Paolo Borelli) * pango/opentype/pango-ot-info.c (pango_ot_info_finalizer): make accidentally public function static.
This commit is contained in:
parent
44ff46a364
commit
c55850d36d
@ -92,9 +92,11 @@ pango_ot_info_finalize (GObject *object)
|
||||
TT_Done_GPOS_Table (info->gpos);
|
||||
info->gpos = NULL;
|
||||
}
|
||||
|
||||
parent_class->finalize (object);
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
pango_ot_info_finalizer (void *object)
|
||||
{
|
||||
FT_Face face = object;
|
||||
|
@ -88,6 +88,8 @@ pango_ot_ruleset_finalize (GObject *object)
|
||||
|
||||
g_array_free (ruleset->rules, TRUE);
|
||||
g_object_unref (ruleset->info);
|
||||
|
||||
parent_class->finalize (object);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user