a possible smart bug?.... and some textblock notes

SVN revision: 13327
This commit is contained in:
Carsten Haitzler 2005-02-12 04:09:21 +00:00
parent 111aa2936a
commit 1947e16b36
2 changed files with 6 additions and 1 deletions

View File

@ -337,7 +337,11 @@ evas_object_smart_cleanup(Evas_Object *obj)
s = obj->smart.smart;
while (obj->smart.contained)
obj->smart.contained = evas_list_remove(obj->smart.contained, obj->smart.contained->data);
{
/* null out smart parent object - maybe a hole to creep through? */
((Evas_Object *)obj->smart.contained->data)->smart.parent = NULL;
obj->smart.contained = evas_list_remove(obj->smart.contained, obj->smart.contained->data);
}
while (obj->smart.callbacks)
{
Evas_Smart_Callback *cb;

View File

@ -10,6 +10,7 @@
*
* things to add:
*
* * height increased by 3 (or 1) even if no underline on last line - fix
* * finish off current api where it is unfinished
* * get native extents
* * styles (outline, glow, etxra glow, shadow, soft shadow, etc.)