bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=adc51e882c5e57d5b38c58541d6e9f57a181c4be

commit adc51e882c5e57d5b38c58541d6e9f57a181c4be
Author: Marcel Hollerbach <m...@marcel-hollerbach.de>
Date:   Sun Mar 31 18:12:48 2019 +0200

    efl_ui_widget: we should ensure that every subobject is a gfx entity
    
    we are calling visible_set on them later on, this will drop errors,
    additionally this safes us from checking this in the widget-container
    code.
    
    Reviewed-by: Xavi Artigas <xavierarti...@yahoo.es>
    Reviewed-by: Cedric BAIL <cedric.b...@free.fr>
    Differential Revision: https://phab.enlightenment.org/D8520
---
 src/lib/elementary/efl_ui_widget.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/lib/elementary/efl_ui_widget.c 
b/src/lib/elementary/efl_ui_widget.c
index 99da93aa3b..6ab2d8a026 100644
--- a/src/lib/elementary/efl_ui_widget.c
+++ b/src/lib/elementary/efl_ui_widget.c
@@ -1486,6 +1486,7 @@ _efl_ui_widget_widget_sub_object_add(Eo *obj, 
Elm_Widget_Smart_Data *sd, Evas_Ob
    Efl_Ui_Widget *parent;
 
    if (!sobj) return EINA_FALSE;
+   EINA_SAFETY_ON_FALSE_RETURN_VAL(efl_isa(sobj, EFL_GFX_ENTITY_INTERFACE), 
EINA_FALSE);
    EINA_SAFETY_ON_TRUE_RETURN_VAL(obj == sobj, EINA_FALSE);
 
    //first make sure that we unregister the sobj from the parent

-- 


Reply via email to