From: Tom Hacohen Date: Thu, 12 May 2016 11:03:32 +0000 (+0100) Subject: Ecore exe: Fix namespacing to use . and not _. X-Git-Tag: upstream/1.20.0~6363 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d6238c04483080909112535d1cf580130b9d7b6;p=platform%2Fupstream%2Fefl.git Ecore exe: Fix namespacing to use . and not _. --- diff --git a/src/lib/ecore/ecore_exe.eo b/src/lib/ecore/ecore_exe.eo index 32952ee..d9c9c17 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]] } }