Eo: rename delete to del.

SVN revision: 70867
This commit is contained in:
Tom Hacohen 2012-05-08 06:56:59 +00:00
parent 5c1aa9fd7d
commit d8c978f7d4
1 changed files with 4 additions and 4 deletions

View File

@ -70,7 +70,7 @@ struct _Eo {
Eo_Kls_Itr mro_itr;
Eina_Bool delete:1;
Eina_Bool del:1;
Eina_Bool construct_error:1;
};
@ -1066,13 +1066,13 @@ eo_ref(Eo *obj)
static void
_eo_del_internal(Eo *obj)
{
if (obj->delete)
if (obj->del)
return;
/* We need that for the event callbacks that may ref/unref. */
obj->refcount++;
eo_event_callback_call(obj, EO_EV_DEL, NULL);
obj->delete = EINA_TRUE;
obj->del = EINA_TRUE;
obj->refcount--;
@ -1563,7 +1563,7 @@ eo_event_callback_call(Eo *obj, const Eo_Event_Description *desc,
break;
}
}
if (obj->delete)
if (obj->del)
break;
}
obj->walking_list--;