ami pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=19380a570dbb12825eda23ba3a946f2d2a8bc827

commit 19380a570dbb12825eda23ba3a946f2d2a8bc827
Author: Amitesh Singh <amitesh...@samsung.com>
Date:   Wed Jan 11 11:06:47 2017 +0530

    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 <amitesh...@samsung.com>
---
 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;

-- 


Reply via email to