main: use eo_isa() to check obj type.
authorChunEon Park <hermet@hermet.pe.kr>
Tue, 10 Mar 2015 13:31:13 +0000 (22:31 +0900)
committerChunEon Park <hermet@hermet.pe.kr>
Tue, 10 Mar 2015 13:31:13 +0000 (22:31 +0900)
src/lib/elm_main.c

index 4bb135e..67d46f2 100644 (file)
@@ -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);