summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2015-07-07 13:55:02 +0100
committerTom Hacohen <tom@stosb.com>2015-07-07 13:55:14 +0100
commitc1bd86b21f1a42c2c14e3659840edbf08acf5342 (patch)
tree1c31632307a95fc38a3ce77870b35e42f1a98174
parent824967457abbef721daf23a6fec2c603911fbe3f (diff)
downloadefl-c1bd86b21f1a42c2c14e3659840edbf08acf5342.tar.gz
Evas line: Migrate Eolian file to use the Eolian types.
-rw-r--r--src/lib/evas/canvas/evas_line.eo10
1 files 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.]]
}
}
}