diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-06-21 13:26:15 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-06-21 14:35:19 +0900 |
commit | 7bf8da2baa243b972dd33d11ba873f6165e18fbf (patch) | |
tree | 91e8d9be8b6d16cd684178afbe081266fa1921fb /src/lib/emotion/emotion_smart.c | |
parent | 2f0b9edbb4b5e47d2d4a1380edc6ad1828134c41 (diff) |
evas: Rename Evas.Object to Efl.Canvas.Object
One step closer to make the EO inheritance tree look like
it's all Efl.
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/emotion_smart.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/emotion/emotion_smart.c b/src/lib/emotion/emotion_smart.c index 1b3364ca07..b1ce922aa0 100644 --- a/src/lib/emotion/emotion_smart.c +++ b/src/lib/emotion/emotion_smart.c | |||
@@ -2,7 +2,7 @@ | |||
2 | # include "config.h" | 2 | # include "config.h" |
3 | #endif | 3 | #endif |
4 | 4 | ||
5 | #define EVAS_OBJECT_PROTECTED | 5 | #define EFL_CANVAS_OBJECT_PROTECTED |
6 | 6 | ||
7 | #include <Evas.h> | 7 | #include <Evas.h> |
8 | #include <Ecore.h> | 8 | #include <Ecore.h> |
@@ -246,7 +246,7 @@ EOLIAN static Eo * | |||
246 | _emotion_object_eo_base_constructor(Eo *obj, Emotion_Object_Data *pd EINA_UNUSED) | 246 | _emotion_object_eo_base_constructor(Eo *obj, Emotion_Object_Data *pd EINA_UNUSED) |
247 | { | 247 | { |
248 | obj = eo_constructor(eo_super(obj, MY_CLASS)); | 248 | obj = eo_constructor(eo_super(obj, MY_CLASS)); |
249 | evas_obj_type_set(obj, E_OBJ_NAME); | 249 | efl_canvas_object_type_set(obj, E_OBJ_NAME); |
250 | 250 | ||
251 | return obj; | 251 | return obj; |
252 | } | 252 | } |