summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--data/03_properties.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/data/03_properties.c b/data/03_properties.c
index 3ed9f9b..4b0b11c 100644
--- a/data/03_properties.c
+++ b/data/03_properties.c
@@ -17,12 +17,12 @@ Evas_object {
};
set {
/*@ sets the hints for an object's maximum size. */
- return = void; /*@ nothing to say for void */
+ return void; /*@ nothing to say for void */
legacy { evas_object_size_hint_max_set };
};
get {
/*@ gets the hints for an object's maximum size. */
- return = void;
+ return void;
legacy { evas_object_size_hint_max_get };
};
};
@@ -33,19 +33,19 @@ Evas_object {
visible {
params {
- const Evas_Object *obj; /*@ */
+ const Evas_Object *obj; /*@ */
};
get {
/*@ Retrieves whether or not the given Evas object is visible. */
- return = Eina_Bool; /*@ EINA_TRUE if the object is visible, @c EINA_FALSE otherwise. */
+ return Eina_Bool; /*@ EINA_TRUE if the object is visible, @c EINA_FALSE otherwise. */
legacy { evas_object_visible_get };
};
};
below_get {
get {
- /*@ Get the Evas object stacked right below the object*/
- return = Evas_Object *; /*@ returns the object below */
+ /*@ Get the Evas object stacked right below the object */
+ return Evas_Object *; /*@ returns the object below */
};
};