q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=6e0e4a8fe5eef07ca547a85ab02e25ac0d2cfb76

commit 6e0e4a8fe5eef07ca547a85ab02e25ac0d2cfb76
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Thu Nov 3 16:48:50 2016 +0100

    efl_gfx_shape: remove pointers
---
 src/lib/efl/interfaces/efl_gfx_shape.eo | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/efl/interfaces/efl_gfx_shape.eo 
b/src/lib/efl/interfaces/efl_gfx_shape.eo
index 9cf053c..743c61e 100644
--- a/src/lib/efl/interfaces/efl_gfx_shape.eo
+++ b/src/lib/efl/interfaces/efl_gfx_shape.eo
@@ -65,7 +65,7 @@ mixin Efl.Gfx.Shape
          get {
          }
          values {
-            dash: const(Efl.Gfx.Dash) *;
+            dash: ptr(const(Efl.Gfx.Dash));
             length: uint;
          }
       }
@@ -131,8 +131,8 @@ mixin Efl.Gfx.Shape
          get {
          }
          values {
-            op: const(Efl.Gfx.Path.Command_Type) *; [[Command list]]
-            points: const(double) *; [[Point list]]
+            op: ptr(const(Efl.Gfx.Path.Command_Type)); [[Command list]]
+            points: ptr(const(double)); [[Point list]]
          }
       }
       @property path_length {

-- 


Reply via email to