From 19380a570dbb12825eda23ba3a946f2d2a8bc827 Mon Sep 17 00:00:00 2001 From: Amitesh Singh Date: Wed, 11 Jan 2017 11:06:47 +0530 Subject: [PATCH] fix compilation with efl master. This fixes following compilation errors enventor_object.eo:216:7: class 'Efl.Gfx.visible' not found within the inheritance tree of 'Enventor.Object' Signed-off-by: Amitesh Singh --- src/lib/enventor_object.eo | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/enventor_object.eo b/src/lib/enventor_object.eo index 5bab6ea..b053952 100644 --- a/src/lib/enventor_object.eo +++ b/src/lib/enventor_object.eo @@ -213,14 +213,14 @@ class Enventor.Object (Elm.Widget, Efl.File) { implements { class.constructor; Efl.Object.constructor; - Efl.Gfx.visible.set; - Efl.Gfx.position.set; - Efl.Gfx.size.set; - Efl.Canvas.Object.clip.set; + Efl.Gfx.visible {set;} + Efl.Gfx.position {set;} + Efl.Gfx.size {set;} + Efl.Canvas.Object.clip {set;} Efl.Canvas.Group.group_add; Efl.Canvas.Group.group_del; Efl.Canvas.Group.group_member_add; - Efl.File.file.set; + Efl.File.file {set;} } events { cursor,line,changed;