Ecore con: Fix namespacing to use . and not _.
authorTom Hacohen <tom@stosb.com>
Thu, 12 May 2016 11:04:55 +0000 (12:04 +0100)
committerTom Hacohen <tom@stosb.com>
Thu, 12 May 2016 11:20:34 +0000 (12:20 +0100)
src/lib/ecore_con/efl_network.eo

index 8e10801..f99bc3c 100644 (file)
@@ -188,14 +188,14 @@ abstract Efl.Network (Eo.Base) {
       @virtual .send;
    }
    events {
-        data,received: Ecore_Con_Event_Data_Received; [[Data received on connection]]
+        data,received: Ecore.Con.Event_Data.Received; [[Data received on connection]]
         connection,upgraded;
         connection,error: const(char) *; [[Error received on connection]]
    }
 }
 
 /* FIXME: Should actually be a binbuf. */
-struct Ecore_Con_Event_Data_Received {
+struct Ecore.Con.Event_Data.Received {
     data: void *; [[The data that got sent.]]
     size: int; [[The length of the data sent.]]
 }