eo2: eo2_do_start use EO_OBJ_POINTER_ macros not _eo_obj_pointer_get

This commit is contained in:
Jérémy Zurcher 2013-09-06 11:38:25 +02:00 committed by Tom Hacohen
parent 74f7bf3633
commit 3a86881941
1 changed files with 2 additions and 1 deletions

View File

@ -329,7 +329,8 @@ eo2_do_start(Eo *obj_id, const Eina_Bool do_super, const char *file EINA_UNUSED,
}
else
{
obj = _eo_obj_pointer_get((Eo_Id)obj_id);
EO_OBJ_POINTER_RETURN_VAL(obj_id, _obj, EINA_FALSE);
obj = _obj;
if (!obj) return EINA_FALSE;
if (do_super)
klass = _eo2_kls_itr_next(obj->klass, obj->klass);