diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/emotion_smart.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/emotion/emotion_smart.c b/src/lib/emotion/emotion_smart.c index 8cf589903d..fbbbb49170 100644 --- a/src/lib/emotion/emotion_smart.c +++ b/src/lib/emotion/emotion_smart.c | |||
@@ -263,11 +263,13 @@ emotion_object_add(Evas *evas) | |||
263 | return e; | 263 | return e; |
264 | } | 264 | } |
265 | 265 | ||
266 | EOLIAN static void | 266 | EOLIAN static Eo * |
267 | _emotion_object_eo_base_constructor(Eo *obj, Emotion_Object_Data *pd EINA_UNUSED) | 267 | _emotion_object_eo_base_constructor(Eo *obj, Emotion_Object_Data *pd EINA_UNUSED) |
268 | { | 268 | { |
269 | eo_do_super(obj, MY_CLASS, eo_constructor()); | 269 | obj = eo_do_super_ret(obj, MY_CLASS, obj, eo_constructor()); |
270 | eo_do(obj, evas_obj_type_set(E_OBJ_NAME)); | 270 | eo_do(obj, evas_obj_type_set(E_OBJ_NAME)); |
271 | |||
272 | return obj; | ||
271 | } | 273 | } |
272 | 274 | ||
273 | EAPI Evas_Object * | 275 | EAPI Evas_Object * |