summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2014-08-08 15:40:19 +0100
committerTom Hacohen <tom@stosb.com>2014-08-11 13:34:56 +0100
commitf880abbd6a37b4524a56981048155b36a821127f (patch)
tree8bd36ea649bed0f519896ea7583bc5d43df7d6d2
parent2d8478d4ade4c1220b164df22214601d14989a54 (diff)
downloadefl-devs/tasn/efl_interfaces.tar.gz
Eo files: Adjust according to latest eolian changes.devs/tasn/efl_interfaces
-rw-r--r--src/lib/ecore/ecore_exe.eo4
-rw-r--r--src/lib/ecore/ecore_mainloop.eo4
-rw-r--r--src/lib/efl/interfaces/efl_file.eo4
-rw-r--r--src/lib/emotion/emotion_object.eo6
4 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/ecore/ecore_exe.eo b/src/lib/ecore/ecore_exe.eo
index 63807d9fbd..59aabb77d0 100644
--- a/src/lib/ecore/ecore_exe.eo
+++ b/src/lib/ecore/ecore_exe.eo
@@ -5,10 +5,10 @@ class Ecore.Exe (Eo.Base, Efl.Control)
command @constructor {
/*@ Control the command that's executed. FIXME: May need a split/rename. */
set {
- legacy null;
+ legacy: null;
}
get {
- legacy null;
+ legacy: null;
}
values {
const(char) *exe_cmd; /*@ The command to execute. */
diff --git a/src/lib/ecore/ecore_mainloop.eo b/src/lib/ecore/ecore_mainloop.eo
index 5e5f4a8623..a220f6b8e8 100644
--- a/src/lib/ecore/ecore_mainloop.eo
+++ b/src/lib/ecore/ecore_mainloop.eo
@@ -17,7 +17,7 @@ class Ecore_Mainloop (Eo.Base)
iterate {
}
iterate_may_block {
- return int;
+ return: int;
params {
int may_block;
}
@@ -28,7 +28,7 @@ class Ecore_Mainloop (Eo.Base)
}
animator_ticked {
/* FIXME: Should it be a prooperty? */
- return Eina_Bool;
+ return: Eina_Bool;
}
}
events {
diff --git a/src/lib/efl/interfaces/efl_file.eo b/src/lib/efl/interfaces/efl_file.eo
index a572a50974..0265344c8d 100644
--- a/src/lib/efl/interfaces/efl_file.eo
+++ b/src/lib/efl/interfaces/efl_file.eo
@@ -29,7 +29,7 @@ interface Efl.File {
}
@endcode */
- return bool;
+ return: bool;
}
get {
/*@
@@ -62,7 +62,7 @@ interface Efl.File {
acceptable flags are @c quality and @c compress. Eg.: @c
"quality=100 compress=9" */
- return bool;
+ return: bool;
params {
@in const(char)* file @nonull; /*@ The filename to be used to save the image (extension
obligatory). */
diff --git a/src/lib/emotion/emotion_object.eo b/src/lib/emotion/emotion_object.eo
index f61d2c475a..3fe8fffbcc 100644
--- a/src/lib/emotion/emotion_object.eo
+++ b/src/lib/emotion/emotion_object.eo
@@ -16,7 +16,7 @@ class Emotion.Object (Evas.Object_Smart, Efl.File, Efl.Player, Efl.Image) {
*
* @ingroup Emotion_Init
*/
- legacy emotion_object_module_option_set;
+ legacy: emotion_object_module_option_set;
}
values {
const(char) *opt; /*@ The option that is being set. Currently supported optiosn: "video" and "audio". */
@@ -44,8 +44,8 @@ class Emotion.Object (Evas.Object_Smart, Efl.File, Efl.Player, Efl.Image) {
*
* @ingroup Emotion_Init
*/
- legacy emotion_object_init;
- return bool; /*@ @c EINA_TRUE if the specified module was successfully initialized for this object, @c EINA_FALSE otherwise. */
+ legacy: emotion_object_init;
+ return: bool; /*@ @c EINA_TRUE if the specified module was successfully initialized for this object, @c EINA_FALSE otherwise. */
}
values {
const(char) *module_filename; /*@ The name of the module to be used (gstreamer or xine). */