diff --git a/src/lib/evas/canvas/evas_line.eo b/src/lib/evas/canvas/evas_line.eo index e3f5f6d9b6..2356c1b225 100644 --- a/src/lib/evas/canvas/evas_line.eo +++ b/src/lib/evas/canvas/evas_line.eo @@ -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.]] } } }