From: Amitesh Singh Date: Thu, 22 Oct 2015 17:06:01 +0000 (+0530) Subject: flip: use eo_isa for checking object types X-Git-Tag: v1.16.0-beta3~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7245bc20dc235b4463c21dd8eced6f5f0d98d6fd;p=platform%2Fupstream%2Felementary.git flip: use eo_isa for checking object types --- diff --git a/src/lib/elm_flip.c b/src/lib/elm_flip.c index e9b54f5..820a822 100644 --- a/src/lib/elm_flip.c +++ b/src/lib/elm_flip.c @@ -933,11 +933,10 @@ static void _map_uv_set(Evas_Object *obj, Evas_Map *map) { Evas_Coord x, y, w, h; - const char *type = evas_object_type_get(obj); // FIXME: only handles filled obj - if ((type) && (!strcmp(type, "image") && - !evas_object_image_source_get(obj))) + if (eo_isa(obj, EVAS_IMAGE_CLASS) && + !evas_object_image_source_get(obj)) { int iw, ih; evas_object_image_size_get(obj, &iw, &ih);