Edje: minor - Fix swallow part error msg

SVN revision: 64416
This commit is contained in:
Bruno Dilly 2011-10-26 19:49:09 +00:00
parent 962d8c85c8
commit 06fcb0725b
1 changed files with 1 additions and 1 deletions

View File

@ -1846,7 +1846,7 @@ edje_object_part_swallow(Evas_Object *obj, const char *part, Evas_Object *obj_sw
if (!rp) return EINA_FALSE;
if (rp->part->type != EDJE_PART_TYPE_SWALLOW)
{
ERR("cannot unswallow part %s: not swallow type!", rp->part->name);
ERR("cannot swallow part %s: not swallow type!", rp->part->name);
return EINA_FALSE;
}
_edje_real_part_swallow(rp, obj_swallow, EINA_TRUE);