q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=6975b89e1473a42c41feab29ab8ccb922a26c034

commit 6975b89e1473a42c41feab29ab8ccb922a26c034
Author: Daniel Kolesa <[email protected]>
Date:   Fri Nov 4 17:07:50 2016 +0100

    ecore con: remove pointers
---
 src/lib/ecore_con/ecore_con_eet_base.eo       | 12 ++++++------
 src/lib/ecore_con/efl_net_dialer_websocket.eo |  2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/lib/ecore_con/ecore_con_eet_base.eo 
b/src/lib/ecore_con/ecore_con_eet_base.eo
index 1c781c5..82d41a2 100644
--- a/src/lib/ecore_con/ecore_con_eet_base.eo
+++ b/src/lib/ecore_con/ecore_con_eet_base.eo
@@ -64,15 +64,15 @@ class Ecore.Con.Eet.Base (Efl.Object) {
          legacy: ecore_con_eet;
          params {
             name: string; [[The name of the eet stream.]]
-            edd: Eet.Data.Descriptor *; [[The Eet.Data.Descriptor that
-                                          is to be registered.]]
+            edd: ptr(Eet.Data.Descriptor); [[The Eet.Data.Descriptor that
+                                             is to be registered.]]
          }
       }
       send {
          [[Function to send data.]]
          params {
-            reply: Ecore.Con.Reply *; [[Contains the ecore_con_eet object
-                                        to which the data has to be sent.]]
+            reply: ptr(Ecore.Con.Reply); [[Contains the ecore_con_eet object
+                                           to which the data has to be sent.]]
             name: string; [[The name of the eet stream.]]
             value: void_ptr; [[Actual data]]
          }
@@ -80,8 +80,8 @@ class Ecore.Con.Eet.Base (Efl.Object) {
       raw_send {
          [[Function to send raw data.]]
          params {
-            reply: Ecore.Con.Reply *; [[Contains the ecore_con_eet object
-                                        to which the data has to be sent.]]
+            reply: ptr(Ecore.Con.Reply); [[Contains the ecore_con_eet object
+                                           to which the data has to be sent.]]
             protocol_name: string; [[The name of the eet stream.]]
             section: string; [[Name of section in the eet descriptor.]]
             value: void_ptr; [[The value of the section.]]
diff --git a/src/lib/ecore_con/efl_net_dialer_websocket.eo 
b/src/lib/ecore_con/efl_net_dialer_websocket.eo
index 7dafbd9..8408eb2 100644
--- a/src/lib/ecore_con/efl_net_dialer_websocket.eo
+++ b/src/lib/ecore_con/efl_net_dialer_websocket.eo
@@ -307,7 +307,7 @@ class Efl.Net.Dialer.Websocket (Efl.Loop_User, 
Efl.Net.Dialer) {
 
     events {
         message,text: string; [[Received a text string message (opcode=0x1)]]
-        message,binary: const(Eina.Slice)*; [[Received a binary message 
(opcode=0x2)]]
+        message,binary: ptr(const(Eina.Slice)); [[Received a binary message 
(opcode=0x2)]]
         pong: string; [[Received a pong (opcode=0xA) with optional 
message/reason]]
         closed,reason: Efl.Net.Dialer.Websocket.Closed_Reason; [[Received a 
request to close the connection. It may be a reply/confirmation from a local 
request, see @.close_request, or some server-generated reason. After this 
point, no more messages are allowed to be sent and no more will be received. 
@Efl.Io.Closer.close will be called.]]
     }

-- 


Reply via email to