summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2016-05-12 12:04:55 +0100
committerTom Hacohen <tom@stosb.com>2016-05-12 12:20:34 +0100
commit7c96c972bdaadf486fc1cc97da0e2aa560a55358 (patch)
tree8d47f4c4562f82fd3c5ca79b00b587140e916899
parent3d6238c04483080909112535d1cf580130b9d7b6 (diff)
downloadefl-7c96c972bdaadf486fc1cc97da0e2aa560a55358.tar.gz
Ecore con: Fix namespacing to use . and not _.
-rw-r--r--src/lib/ecore_con/efl_network.eo4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ecore_con/efl_network.eo b/src/lib/ecore_con/efl_network.eo
index 8e10801a37..f99bc3c137 100644
--- a/src/lib/ecore_con/efl_network.eo
+++ b/src/lib/ecore_con/efl_network.eo
@@ -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.]]
}