diff options
author | Tom Hacohen <tom@stosb.com> | 2015-05-29 11:07:12 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2015-05-29 11:39:03 +0100 |
commit | 5aedcdb59128b426e32cb9b578ee55505168b28e (patch) | |
tree | 67a8a20c61b4f51c38f688f6c7ec11dfb94cf475 | |
parent | 5b89cf16336380c2d74690b6bbbbf7a9f36b0fa0 (diff) |
Evas object: Use correct type in .eo file.
When we want an Evas_Object in Eo files, we should use Evas.Object.
-rw-r--r-- | src/lib/evas/canvas/evas_object.eo | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/evas/canvas/evas_object.eo b/src/lib/evas/canvas/evas_object.eo index 58c4300665..9e9eee2314 100644 --- a/src/lib/evas/canvas/evas_object.eo +++ b/src/lib/evas/canvas/evas_object.eo | |||
@@ -454,7 +454,7 @@ abstract Evas.Object (Eo.Base, Evas.Common_Interface, Efl.Gfx.Base, Efl.Gfx.Stac | |||
454 | See the full @ref Example_Evas_Object_Manipulation "example". */ | 454 | See the full @ref Example_Evas_Object_Manipulation "example". */ |
455 | } | 455 | } |
456 | values { | 456 | values { |
457 | clip: Evas_Object * @nonull; /*@ The object to clip @p obj by */ | 457 | clip: Evas.Object * @nonull; /*@ The object to clip @p obj by */ |
458 | } | 458 | } |
459 | } | 459 | } |
460 | @property size_hint_padding { | 460 | @property size_hint_padding { |
@@ -1014,7 +1014,7 @@ abstract Evas.Object (Eo.Base, Evas.Common_Interface, Efl.Gfx.Base, Efl.Gfx.Stac | |||
1014 | properties, like colors. | 1014 | properties, like colors. |
1015 | 1015 | ||
1016 | @see evas_object_smart_clipped_smart_add() */ | 1016 | @see evas_object_smart_clipped_smart_add() */ |
1017 | return: Evas_Object * @warn_unused; | 1017 | return: Evas.Object * @warn_unused; |
1018 | } | 1018 | } |
1019 | } | 1019 | } |
1020 | @property clipees { | 1020 | @property clipees { |
@@ -1068,7 +1068,7 @@ abstract Evas.Object (Eo.Base, Evas.Common_Interface, Efl.Gfx.Base, Efl.Gfx.Stac | |||
1068 | obj is not a smart member of any | 1068 | obj is not a smart member of any |
1069 | 1069 | ||
1070 | @ingroup Evas_Smart_Object_Group */ | 1070 | @ingroup Evas_Smart_Object_Group */ |
1071 | return: Evas_Object * @warn_unused; | 1071 | return: Evas.Object * @warn_unused; |
1072 | } | 1072 | } |
1073 | } | 1073 | } |
1074 | @property size_hint_display_mode { | 1074 | @property size_hint_display_mode { |
@@ -1197,7 +1197,7 @@ abstract Evas.Object (Eo.Base, Evas.Common_Interface, Efl.Gfx.Base, Efl.Gfx.Stac | |||
1197 | @since 1.2 | 1197 | @since 1.2 |
1198 | 1198 | ||
1199 | @ingroup Evas_Object_Group_Find */ | 1199 | @ingroup Evas_Object_Group_Find */ |
1200 | return: Evas_Object * @warn_unused; | 1200 | return: Evas.Object * @warn_unused; |
1201 | params { | 1201 | params { |
1202 | @in name: const(char)*; /*@ The given name. */ | 1202 | @in name: const(char)*; /*@ The given name. */ |
1203 | @in recurse: int; /*@ Set to the number of child levels to recurse (0 == don't recurse, 1 == only look at the children of @p obj or their immediate children, but no further etc.). */ | 1203 | @in recurse: int; /*@ Set to the number of child levels to recurse (0 == don't recurse, 1 == only look at the children of @p obj or their immediate children, but no further etc.). */ |