From c1bd86b21f1a42c2c14e3659840edbf08acf5342 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 7 Jul 2015 13:55:02 +0100 Subject: [PATCH] Evas line: Migrate Eolian file to use the Eolian types. --- src/lib/evas/canvas/evas_line.eo | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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.]] } } }