Evas common interface: Add a workaround for Eolian issue.

This should be fixed properly once Eolian supports forward class
declarations.
This commit is contained in:
Tom Hacohen 2015-06-01 10:30:16 +01:00
parent 57e7af6673
commit 49b2998bb4
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@ interface Evas.Common_Interface ()
legacy: evas_object_evas_get;
}
values {
ret: Evas *;
/* FIXME: This is actually wrong, should return Evas. */
ret: Evas.Common_Interface *;
}
}
}