evas_object_smart - just removed no useful MAGIC_CHECK

SVN revision: 61889
This commit is contained in:
ChunEon Park 2011-07-29 11:44:03 +00:00
parent 9821e8449b
commit e9ec7403d4
1 changed files with 1 additions and 3 deletions

View File

@ -92,9 +92,7 @@ evas_object_smart_data_get(const Evas_Object *obj)
return NULL;
MAGIC_CHECK_END();
o = (Evas_Object_Smart *)(obj->object_data);
MAGIC_CHECK(o, Evas_Object_Smart, MAGIC_OBJ_SMART);
return NULL;
MAGIC_CHECK_END();
if (!o) return NULL;
return o->data;
}