elm elc_popup.c: Removed _on_content_del cb in smart del not in sub object del.

SVN revision: 79672
This commit is contained in:
Daniel Juyung Seo 2012-11-26 07:09:53 +00:00
parent b8a1019969
commit 2452e6426c
1 changed files with 2 additions and 4 deletions

View File

@ -173,7 +173,8 @@ _elm_popup_smart_del(Eo *obj, void *_pd, va_list *list EINA_UNUSED)
evas_object_smart_callback_del
(sd->notify, "block,clicked", _block_clicked_cb);
evas_object_smart_callback_del(sd->notify, "timeout", _timeout_cb);
evas_object_event_callback_del
(sd->content, EVAS_CALLBACK_DEL, _on_content_del);
evas_object_event_callback_del(obj, EVAS_CALLBACK_SHOW, _on_show);
sd->button_count = 0;
@ -345,9 +346,6 @@ _elm_popup_smart_sub_object_del(Eo *obj, void *_pd, va_list *list)
Elm_Popup_Smart_Data *sd = _pd;
Elm_Widget_Smart_Data *wd = eo_data_get(obj, ELM_OBJ_WIDGET_CLASS);
evas_object_event_callback_del
(sd->content, EVAS_CALLBACK_DEL, _on_content_del);
eo_do_super(obj, elm_wdg_sub_object_del(sobj, &int_ret));
if (!int_ret) return;