From 824967457abbef721daf23a6fec2c603911fbe3f Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 7 Jul 2015 13:54:10 +0100 Subject: [PATCH] Evas line: Remove obviously wrong default values. --- src/lib/evas/canvas/evas_line.eo | 4 ++-- 1 file 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.]] }