elementary: fix a typo on override func of signal_callback_del

there is a logic that forwards a calling to supoer class on efl_ui_layout.
and the logic have a mismatching calling as you could see.
and this patch fixes the typo error.
Differential Revision: https://phab.enlightenment.org/D7151
This commit is contained in:
Wonki Kim 2018-10-10 06:27:14 +00:00 committed by Marcel Hollerbach
parent 185a1f739b
commit 18f9fbc018
1 changed files with 1 additions and 1 deletions

View File

@ -948,7 +948,7 @@ _efl_ui_layout_object_efl_layout_signal_signal_callback_del(Eo *obj, Efl_Ui_Layo
{
// Don't do anything else than call forward here
ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd, EINA_FALSE);
return efl_layout_signal_callback_add(wd->resize_obj, emission, source, func, data);
return efl_layout_signal_callback_del(wd->resize_obj, emission, source, func, data);
}
// TODO: