From: ChunEon Park Date: Tue, 10 Mar 2015 13:31:13 +0000 (+0900) Subject: main: use eo_isa() to check obj type. X-Git-Tag: v1.14.0-alpha1~114 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d18e0c938ad141a47b073ccaac82b62c3b336196;p=platform%2Fupstream%2Felementary.git main: use eo_isa() to check obj type. --- diff --git a/src/lib/elm_main.c b/src/lib/elm_main.c index 4bb135e..67d46f2 100644 --- a/src/lib/elm_main.c +++ b/src/lib/elm_main.c @@ -1346,13 +1346,10 @@ elm_object_focus_set(Evas_Object *obj, if (elm_widget_is(obj)) { - const char *type; - if (focus == elm_widget_focus_get(obj)) return; // ugly, but, special case for inlined windows - type = evas_object_type_get(obj); - if ((type) && (!strcmp(type, "elm_win"))) + if (eo_isa(obj, ELM_WIN_CLASS)) { Evas_Object *inlined = elm_win_inlined_image_object_get(obj);