also remove text class members on object deletion

SVN revision: 42397
This commit is contained in:
Hannes Janetzek 2009-09-11 00:48:57 +00:00
parent fda3149474
commit e7d76f6392
1 changed files with 5 additions and 1 deletions

View File

@ -883,7 +883,11 @@ _edje_file_del(Edje *ed)
_edje_textblock_styles_del(ed);
EINA_LIST_FOREACH(ed->collection->parts, l, ep)
_edje_color_class_on_del(ed, ep);
{
_edje_text_part_on_del(ed, ep);
_edje_color_class_on_del(ed, ep);
}
_edje_cache_coll_unref(ed->file, ed->collection);
ed->collection = NULL;
}