summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2016-05-12 12:03:32 +0100
committerTom Hacohen <tom@stosb.com>2016-05-12 12:20:34 +0100
commit3d6238c04483080909112535d1cf580130b9d7b6 (patch)
tree2e162bd26970b4ff5c9c6911b97f1c59114c81cd
parent56edc594c35f1ee115d1f69ea5c47377a7ef7823 (diff)
downloadefl-3d6238c04483080909112535d1cf580130b9d7b6.tar.gz
Ecore exe: Fix namespacing to use . and not _.
-rw-r--r--src/lib/ecore/ecore_exe.eo10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/ecore/ecore_exe.eo b/src/lib/ecore/ecore_exe.eo
index 32952ee8de..d9c9c17bf0 100644
--- a/src/lib/ecore/ecore_exe.eo
+++ b/src/lib/ecore/ecore_exe.eo
@@ -1,6 +1,6 @@
/* FIXME: The structures are not namespaced correctly. */
-struct Ecore.Exe_Event_Data_Line
+struct Ecore.Exe.Event_Data.Line
{
[[A structure that stores information of lines data from a child process.]]
line: char *; [[The bytes of a line of buffered data]]
@@ -11,12 +11,12 @@ struct Ecore.Exe_Event_Data_Line
* @struct _Ecore_Exe_Event_Data
* @brief A structure that stores information of data from a child process event.
*/
-struct Ecore.Exe_Event_Data
+struct Ecore.Exe.Event_Data
{
exe: Eo.Base *; [[The handle to the process. FIXME: should actually be Ecore.Exe, workaround cyclic]]
data: void *; [[the raw binary data from the child process that was received]]
size: int; [[the size of this data in bytes]]
- lines: Ecore.Exe_Event_Data_Line *; [[an array of line data if line buffered, the last one has it's line member set to $NULL]]
+ lines: Ecore.Exe.Event_Data.Line *; [[an array of line data if line buffered, the last one has it's line member set to $NULL]]
}
enum Ecore.Exe_Flags
@@ -70,8 +70,8 @@ class Ecore.Exe (Eo.Base, Efl.Control)
.command;
}
events {
- data,get: Ecore.Exe_Event_Data; [[Data received event from the child process]]
- data,error: Ecore.Exe_Event_Data; [[Error received event from the child process]]
+ data,get: Ecore.Exe.Event_Data; [[Data received event from the child process]]
+ data,error: Ecore.Exe.Event_Data; [[Error received event from the child process]]
}
}