From d18e0c938ad141a47b073ccaac82b62c3b336196 Mon Sep 17 00:00:00 2001 From: ChunEon Park Date: Tue, 10 Mar 2015 22:31:13 +0900 Subject: [PATCH] main: use eo_isa() to check obj type. --- src/lib/elm_main.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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); -- 2.7.4