Evas textblock: Should not clean the props of the item.

SVN revision: 51984
This commit is contained in:
Tom Hacohen 2010-09-08 10:00:47 +00:00
parent 6c69d6f60e
commit bcc518ed97
1 changed files with 5 additions and 1 deletions

View File

@ -2216,7 +2216,11 @@ _layout_item_abort(Ctxt *c, Evas_Object_Textblock_Format *fmt, Evas_Object_Textb
if (it->text) free(it->text);
_format_unref_free(c->obj, it->format);
#ifdef BIDI_SUPPORT
evas_bidi_props_clean(&it->bidi_props);
/* FIXME: this also unrefs the paragraph props, we should either
* really count the usage of the paragraph props in the items, or just
* not use clean here. I prefer the latter but that might break if we'll
* start doing fancy stuff in clean in the future. */
/* evas_bidi_props_clean(&it->bidi_props); */
#endif
free(it);
if (c->ln->items)