diff options
author | Tom Hacohen <tom@stosb.com> | 2015-05-29 14:20:11 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2015-05-29 14:24:40 +0100 |
commit | 12f22950722ef884f3481a386d40539f01ec2b57 (patch) | |
tree | b1583dc4e827c2a9bdcbf08f01ee81d75132a025 | |
parent | 84c7eefcde1c12564c5781a07073329b68ff3ba6 (diff) |
Efl gfx shape: Use correct class names in .eo file.
-rw-r--r-- | src/lib/efl/interfaces/efl_gfx_shape.eo | 10 | ||||
-rw-r--r-- | src/lib/eo/eina_types.eot | 6 |
2 files changed, 12 insertions, 4 deletions
diff --git a/src/lib/efl/interfaces/efl_gfx_shape.eo b/src/lib/efl/interfaces/efl_gfx_shape.eo index afbb26a4ec..9ac35bbf0a 100644 --- a/src/lib/efl/interfaces/efl_gfx_shape.eo +++ b/src/lib/efl/interfaces/efl_gfx_shape.eo | |||
@@ -1,3 +1,5 @@ | |||
1 | import eina_types; | ||
2 | |||
1 | mixin Efl.Gfx.Shape | 3 | mixin Efl.Gfx.Shape |
2 | { | 4 | { |
3 | legacy_prefix: null; | 5 | legacy_prefix: null; |
@@ -184,7 +186,7 @@ mixin Efl.Gfx.Shape | |||
184 | @since 1.14 | 186 | @since 1.14 |
185 | */ | 187 | */ |
186 | params { | 188 | params { |
187 | @in dup_from: Eo *; /*@ Shape object from where data will be copied.*/ | 189 | @in dup_from: Eo.Base *; /*@ Shape object from where data will be copied.*/ |
188 | } | 190 | } |
189 | } | 191 | } |
190 | bounds_get { | 192 | bounds_get { |
@@ -372,15 +374,15 @@ mixin Efl.Gfx.Shape | |||
372 | interpolate { | 374 | interpolate { |
373 | return: bool; | 375 | return: bool; |
374 | params { | 376 | params { |
375 | @in from: const(Eo)*; | 377 | @in from: const(Eo.Base)*; |
376 | @in to: const(Eo)*; | 378 | @in to: const(Eo.Base)*; |
377 | @in pos_map: double; | 379 | @in pos_map: double; |
378 | } | 380 | } |
379 | } | 381 | } |
380 | equal_commands { | 382 | equal_commands { |
381 | return: bool; | 383 | return: bool; |
382 | params { | 384 | params { |
383 | @in with: const(Eo)*; | 385 | @in with: const(Eo.Base)*; |
384 | } | 386 | } |
385 | } | 387 | } |
386 | } | 388 | } |
diff --git a/src/lib/eo/eina_types.eot b/src/lib/eo/eina_types.eot index eef43fbc06..4340cc3096 100644 --- a/src/lib/eo/eina_types.eot +++ b/src/lib/eo/eina_types.eot | |||
@@ -1,2 +1,8 @@ | |||
1 | /* FIXME: Move to Eina when we decide they are handled properly. */ | 1 | /* FIXME: Move to Eina when we decide they are handled properly. */ |
2 | type @extern Eina_Stringshare: const(char) *; | 2 | type @extern Eina_Stringshare: const(char) *; |
3 | struct @extern Eina_Rectangle { | ||
4 | x: int; | ||
5 | y: int; | ||
6 | w: int; | ||
7 | h: int; | ||
8 | } | ||