Evas line: Migrate Eolian file to use the Eolian types.

This commit is contained in:
Tom Hacohen 2015-07-07 13:55:02 +01:00
parent 824967457a
commit c1bd86b21f
1 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,5 @@
import evas_types;
class Evas.Line (Evas.Object)
{
legacy_prefix: evas_object_line;
@ -17,10 +19,10 @@ class Evas.Line (Evas.Object)
]]
}
values {
x1: Evas_Coord; [[The X coordinate of the first point.]]
y1: Evas_Coord; [[The Y coordinate of the first point.]]
x2: Evas_Coord; [[The X coordinate of the second point.]]
y2: Evas_Coord; [[The Y coordinate of the second point.]]
x1: Evas.Coord; [[The X coordinate of the first point.]]
y1: Evas.Coord; [[The Y coordinate of the first point.]]
x2: Evas.Coord; [[The X coordinate of the second point.]]
y2: Evas.Coord; [[The Y coordinate of the second point.]]
}
}
}