Efl gfx shape: Use correct class names in .eo file.

This commit is contained in:
Tom Hacohen 2015-05-29 14:20:11 +01:00
parent 84c7eefcde
commit 12f2295072
2 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,5 @@
import eina_types;
mixin Efl.Gfx.Shape mixin Efl.Gfx.Shape
{ {
legacy_prefix: null; legacy_prefix: null;
@ -184,7 +186,7 @@ mixin Efl.Gfx.Shape
@since 1.14 @since 1.14
*/ */
params { params {
@in dup_from: Eo *; /*@ Shape object from where data will be copied.*/ @in dup_from: Eo.Base *; /*@ Shape object from where data will be copied.*/
} }
} }
bounds_get { bounds_get {
@ -372,15 +374,15 @@ mixin Efl.Gfx.Shape
interpolate { interpolate {
return: bool; return: bool;
params { params {
@in from: const(Eo)*; @in from: const(Eo.Base)*;
@in to: const(Eo)*; @in to: const(Eo.Base)*;
@in pos_map: double; @in pos_map: double;
} }
} }
equal_commands { equal_commands {
return: bool; return: bool;
params { params {
@in with: const(Eo)*; @in with: const(Eo.Base)*;
} }
} }
} }

View File

@ -1,2 +1,8 @@
/* FIXME: Move to Eina when we decide they are handled properly. */ /* FIXME: Move to Eina when we decide they are handled properly. */
type @extern Eina_Stringshare: const(char) *; type @extern Eina_Stringshare: const(char) *;
struct @extern Eina_Rectangle {
x: int;
y: int;
w: int;
h: int;
}