Fix build break on EFL 1.20 38/173238/1 accepted/tizen/unified/20180328.010033 submit/tizen/20180319.053649
authorShinwoo Kim <cinoo.kim@samsung.com>
Tue, 20 Mar 2018 06:26:11 +0000 (15:26 +0900)
committerShinwoo Kim <cinoo.kim@samsung.com>
Tue, 20 Mar 2018 06:27:35 +0000 (15:27 +0900)
Change-Id: Icfda79cbc20d321b56523149cfb2fd496853af58

src/vc_elm_core.c
src/vc_elm_main.h

index 97d09b5..51501fe 100644 (file)
@@ -741,7 +741,7 @@ void _vc_elm_core_load()
 Evas_Object *_vc_elm_core_get_evas_object(Elm_Object_Item *item)
 {
        Elm_Widget_Item_Data *ret;
-       ret = eo_data_scope_get(item, ELM_WIDGET_ITEM_CLASS);
+       ret = efl_data_scope_get(item, ELM_WIDGET_ITEM_CLASS);
        if (NULL != ret)
                return (Evas_Object *)(ret->view);
        else
index 6f4dbae..6443ee8 100644 (file)
@@ -26,6 +26,9 @@ extern "C" {
 #pragma GCC system_header
 #define _GNU_SOURCE
 
+#define EFL_EO_API_SUPPORT
+#define EFL_BETA_API_SUPPORT
+
 #include <Eina.h>
 #include <Evas.h>
 #include <Ecore.h>
@@ -47,7 +50,7 @@ static inline Evas_Object *__safe_efl_cast(const Evas_Object *cobj)
        return helper.obj;
 }
 
-void *eo_data_scope_get(const Eo *obj, const Eo_Class *klass);
+void *efl_data_scope_get(const Eo *obj, const Efl_Class *klass);
 
 
 #ifdef __cplusplus