From: cnook <kimcinoo@gmail.com>

Subject: [E-devel] [Patch] Removing content resize callback before the
ctxpopup is deleted.

Sometimes, widget data is referred after ctxpopup is deleted.
So before the ctxpopup is deleted, the content resize callback should
be removed.



SVN revision: 67268
This commit is contained in:
cnook 2012-01-17 09:47:10 +00:00 committed by Carsten Haitzler
parent 4d06eea2bd
commit 85925ec534
1 changed files with 2 additions and 0 deletions

View File

@ -729,6 +729,8 @@ _del_pre_hook(Evas_Object *obj)
wd = elm_widget_data_get(obj);
if (!wd) return;
evas_object_event_callback_del_full(wd->box, EVAS_CALLBACK_RESIZE,
_content_resize, obj);
_parent_cut_off(obj);
}