summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2015-07-07 13:54:10 +0100
committerTom Hacohen <tom@stosb.com>2015-07-07 13:55:14 +0100
commit824967457abbef721daf23a6fec2c603911fbe3f (patch)
tree5c83b31518a8c542a66dd20a8c3f1bf3bd682320
parentec6ddf59e221b1a35543c0be9d09122567c1d4f7 (diff)
downloadefl-824967457abbef721daf23a6fec2c603911fbe3f.tar.gz
Evas line: Remove obviously wrong default values.
-rw-r--r--src/lib/evas/canvas/evas_line.eo4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/evas/canvas/evas_line.eo b/src/lib/evas/canvas/evas_line.eo
index 3632adabbc..e3f5f6d9b6 100644
--- a/src/lib/evas/canvas/evas_line.eo
+++ b/src/lib/evas/canvas/evas_line.eo
@@ -17,8 +17,8 @@ class Evas.Line (Evas.Object)
]]
}
values {
- x1: Evas_Coord(0); [[The X coordinate of the first point.]]
- y1: Evas_Coord(3); [[The Y coordinate of the first 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.]]
}