actually imho these 2 are warning ones only.

SVN revision: 75395
This commit is contained in:
Carsten Haitzler 2012-08-18 00:37:54 +00:00
parent 63b7df8111
commit 38c85ab9ab
1 changed files with 2 additions and 2 deletions

View File

@ -449,14 +449,14 @@ evas_object_image_source_set(Evas_Object *obj, Evas_Object *src)
if (obj->delete_me)
{
CRIT("Setting deleted object %p as image source %p", src, obj);
WRN("Setting deleted object %p as image source %p", src, obj);
return EINA_FALSE;
}
if (src)
{
if (src->delete_me)
{
CRIT("Setting object %p to deleted image source %p", src, obj);
WRN("Setting object %p to deleted image source %p", src, obj);
return EINA_FALSE;
}
if (!src->layer)