elementary/widget - fixed to prevent infinite loop.

Now, if user passes the parent object of obj as the sub object, 
then it reverses the obj - subobj relationship.



SVN revision: 67823
This commit is contained in:
ChunEon Park 2012-02-10 12:29:04 +00:00
parent a4b470eced
commit b3af72d606
1 changed files with 6 additions and 0 deletions

View File

@ -920,6 +920,12 @@ elm_widget_sub_object_add(Evas_Object *obj,
Elm_Theme *th, *pth = elm_widget_theme_get(sobj);
Eina_Bool mirrored, pmirrored = elm_widget_mirrored_get(obj);
if (sobj == sd->parent_obj)
{
elm_widget_sub_object_del(sobj, obj);
WRN("You passed a parent object of obj = %p as the sub object = %p!", obj, sobj);
}
if (_elm_widget_is(sobj))
{
Smart_Data *sd2 = evas_object_smart_data_get(sobj);