diff options
author | Tom Hacohen <tom@stosb.com> | 2015-06-01 11:17:22 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2015-06-01 11:17:22 +0100 |
commit | 37b130b9343db0e405cce4fd9a90cf53e8d99399 (patch) | |
tree | bd20f96e08b074f078eded266b44ee63cf1615b9 /src/lib | |
parent | 82f6dff7d799347ca85e9c5d9850690b0af4d8e7 (diff) | |
download | efl-37b130b9343db0e405cce4fd9a90cf53e8d99399.tar.gz |
Evas grid: Migrate types to .eo files.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/evas/canvas/evas_grid.eo | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/evas/canvas/evas_grid.eo b/src/lib/evas/canvas/evas_grid.eo index 37f2e34bee..d01a750090 100644 --- a/src/lib/evas/canvas/evas_grid.eo +++ b/src/lib/evas/canvas/evas_grid.eo @@ -91,7 +91,7 @@ class Evas.Grid (Evas.Smart_Clipped) @see evas_object_grid_add() @since 1.1 */ - return: Evas_Object * @warn_unused; + return: Evas.Object * @warn_unused; } unpack { /*@ @@ -106,7 +106,7 @@ class Evas.Grid (Evas.Smart_Clipped) return: bool; params { - @in child: Evas_Object * @nonull; + @in child: Evas.Object * @nonull; } } pack_get @const { @@ -119,7 +119,7 @@ class Evas.Grid (Evas.Smart_Clipped) @since 1.1 */ return: bool; params { - @in child: Evas_Object *; /*@ The grid child to query for coordinates */ + @in child: Evas.Object *; /*@ The grid child to query for coordinates */ @out x: int; /*@ The pointer to where the x coordinate will be returned */ @out y: int; /*@ The pointer to where the y coordinate will be returned */ @out w: int; /*@ The pointer to where the width will be returned */ @@ -135,7 +135,7 @@ class Evas.Grid (Evas.Smart_Clipped) return: bool; params { - @in child: Evas_Object * @nonull; /*@ The child object to add. */ + @in child: Evas.Object * @nonull; /*@ The child object to add. */ @in x: int; /*@ The virtual x coordinate of the child */ @in y: int; /*@ The virtual y coordinate of the child */ @in w: int; /*@ The virtual width of the child */ |