eo: improve error message by pointing to the class that is creating trouble.

Differential Revision: https://phab.enlightenment.org/D6079
This commit is contained in:
Cedric BAIL 2018-05-01 14:24:05 -07:00
parent bb66aa37ca
commit 56fb2cf377
1 changed files with 1 additions and 1 deletions

View File

@ -2189,7 +2189,7 @@ composite_obj:
err_parent:
if (EINA_LIKELY(!pd->allow_parent_unref))
ERR("Object '%p' still has a parent at the time of destruction.", obj);
ERR("Object '%p' of type '%s' still has a parent at the time of destruction.", obj, efl_class_name_get(obj));
efl_parent_set(obj, NULL);
goto err_parent_back;
}