q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=0f20af41eabfd2c329bd0b32a41d834f28007859

commit 0f20af41eabfd2c329bd0b32a41d834f28007859
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Thu Nov 3 16:46:31 2016 +0100

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

diff --git a/src/lib/efl/interfaces/efl_gfx_buffer.eo 
b/src/lib/efl/interfaces/efl_gfx_buffer.eo
index 1b8f6b1..3d26624 100644
--- a/src/lib/efl/interfaces/efl_gfx_buffer.eo
+++ b/src/lib/efl/interfaces/efl_gfx_buffer.eo
@@ -159,7 +159,7 @@ interface Efl.Gfx.Buffer ()
            valid anymore.
          ]]
          params {
-            @in slice: const(Eina.Rw_Slice)*; [[Data slice returned by a 
previous call to map.]]
+            @in slice: ptr(const(Eina.Rw_Slice)); [[Data slice returned by a 
previous call to map.]]
          }
          return: bool; [[$true on success, $false otherwise]]
       }
@@ -181,7 +181,7 @@ interface Efl.Gfx.Buffer ()
            $slice should not be the return value of @.buffer_managed_get.
          ]]
          params {
-            @in slice: const(Eina.Slice)* @nullable; [[If $null, allocates an 
empty buffer]]
+            @in slice: ptr(const(Eina.Slice)) @nullable; [[If $null, allocates 
an empty buffer]]
             @in width: int; [[Width]]
             @in height: int; [[Height]]
             @in stride: int @optional; [[If 0, automatically guessed from the 
$width.]]
@@ -207,7 +207,7 @@ interface Efl.Gfx.Buffer ()
            internally.
          ]]
          params {
-            @in slice: const(Eina.Slice)* @nullable; [[If $null, detaches the 
previous buffer.]]
+            @in slice: ptr(const(Eina.Slice)) @nullable; [[If $null, detaches 
the previous buffer.]]
             @in width: int; [[Width]]
             @in height: int; [[Height]]
             @in stride: int @optional; [[If 0, automatically guessed from the 
$width.]]

-- 


Reply via email to