evas grid smart - don't abort if smart data is null - return safely

it's unssocial of us to abort unless we truly have a fatal error we
cann't get over... so remove from grid smart.

@fix
This commit is contained in:
Carsten Haitzler 2017-01-23 11:20:37 +09:00
parent 960812f658
commit 09f4cd8cfa
1 changed files with 0 additions and 2 deletions

View File

@ -51,7 +51,6 @@ struct _Evas_Object_Grid_Accessor
{ \
CRI("no widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
abort(); \
return; \
}
@ -61,7 +60,6 @@ struct _Evas_Object_Grid_Accessor
{ \
CRI("No widget data for object %p (%s)", \
o, evas_object_type_get(o)); \
abort(); \
return val; \
}