From 70d45cfbb647cc8d9b2d9da529b6bcc854343ded Mon Sep 17 00:00:00 2001 From: irfan abdul Date: Tue, 6 Dec 2016 05:28:24 -0800 Subject: [PATCH] Revert "[Recents] TSAM-10851 Recent app has stopped after remove app" This reverts commit 1f054946ef1168c06dfbe714dbced576b4bc0219. Change-Id: I79c05506b7582d19f37ecd198b8e905c6a8248f5 --- src/item.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/item.c b/src/item.c index e775449..e521c71 100644 --- a/src/item.c +++ b/src/item.c @@ -493,16 +493,14 @@ 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."); -//this deletion is not requried as item(parent) is deleted -// evas_object_del(item_inner); + 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."); -//this deletion is not requried as item(parent) is deleted -// evas_object_del(icon); + evas_object_del(icon); icon = NULL; } Eina_List *l = NULL; -- 2.7.4