From 18f9fbc018dea73ead050871d14e751db74d1947 Mon Sep 17 00:00:00 2001 From: Wonki Kim Date: Wed, 10 Oct 2018 06:27:14 +0000 Subject: [PATCH] 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 --- src/lib/elementary/efl_ui_layout_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/efl_ui_layout_object.c b/src/lib/elementary/efl_ui_layout_object.c index b3f5796f16..f3b4cd12f3 100644 --- a/src/lib/elementary/efl_ui_layout_object.c +++ b/src/lib/elementary/efl_ui_layout_object.c @@ -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: