[Recents] TSAM-10851 Recent app has stopped after remove app 62/102762/1 submit/tizen_3.0/20161206.122811
authorIrfan Abdul <irfan.abdul@samsung.com>
Tue, 6 Dec 2016 11:49:43 +0000 (17:19 +0530)
committerIrfan Abdul <irfan.abdul@samsung.com>
Tue, 6 Dec 2016 11:49:43 +0000 (17:19 +0530)
Change-Id: Iaca117fcc5bbbeb384e6143240a540ebef4ea41b

src/item.c

index e521c71..e775449 100644 (file)
@@ -493,14 +493,16 @@ void item_destroy(Evas_Object *item)
        item_inner = elm_object_part_content_unset(item, "txt.app_name");
        if (item_inner) {
                _D("Delete the Label if it is NOT NULL.");
-               evas_object_del(item_inner);
+//this deletion is not requried as item(parent) is deleted
+//             evas_object_del(item_inner);
                item_inner = NULL;
        }
 
        icon = elm_object_part_content_unset(item, "img.app_image");
        if (icon) {
                _D("Delete the icon if it is NOT NULL.");
-               evas_object_del(icon);
+//this deletion is not requried as item(parent) is deleted
+//             evas_object_del(icon);
                icon = NULL;
        }
        Eina_List *l = NULL;