summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-11-28 16:04:09 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2013-11-28 16:04:09 +0100
commit4104f5c37dcea0ccf1f0323aba197f5fb2b905d1 (patch)
tree1d0a27f7e5059596041fea64bdc373fb8ef78710
parenta543aa04e995a5a1708490f4b4329da014a11921 (diff)
downloadeo_tokenizer-4104f5c37dcea0ccf1f0323aba197f5fb2b905d1.zip
eo_tokenizer-4104f5c37dcea0ccf1f0323aba197f5fb2b905d1.tar.gz
test data: return = …; -> return …;
-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 */
};
};