Revert "eo: add eo_error_get"

As discussed on IRC and ML. We are in a feature freeze phase, and this
patch is not essential. Furthermore, this patch was never discussed.

This reverts commit 537c7fe9e3.
This commit is contained in:
Tom Hacohen 2015-04-15 08:18:25 +01:00
parent 537c7fe9e3
commit e891c56f60
2 changed files with 0 additions and 21 deletions

View File

@ -631,19 +631,6 @@ EAPI const Eo_Class *eo_class_get(const Eo *obj);
EAPI void eo_error_set_internal(const Eo *obj, const char *file, int line);
/* @endcond */
/**
* @def eo_error_get
* @brief Get whether or not the eo has error when constructing, destructing or calling a function of the object.
* @param obj the object to work on.
*
* @see eo_error_set()
*/
#define eo_error_get(obj) eo_error_get_internal(obj)
/* @cond 0 */
EAPI Eina_Bool eo_error_get_internal(const Eo *obj);
/* @endcond */
#define _eo_add_common(klass, parent, is_ref, ...) \
( \
_eo_do_start(_eo_add_internal_start(__FILE__, __LINE__, klass, parent, is_ref), \

View File

@ -1584,14 +1584,6 @@ eo_error_set_internal(const Eo *obj_id, const char *file, int line)
obj->do_error = EINA_TRUE;
}
EAPI Eina_Bool
eo_error_get_internal(const Eo *obj_id)
{
EO_OBJ_POINTER_RETURN_VAL(obj_id, obj, EINA_TRUE);
return obj->do_error;
}
void
_eo_condtor_done(Eo *obj_id)
{