From ca8340946ba73836c31a37178c97ea9d274dc583 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Fri, 19 Jan 2018 20:35:22 +0300 Subject: [PATCH] In progress... --- src/Place.vala | 9 ++++++++- src/Text.vala | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/Place.vala b/src/Place.vala index 6b45820..25c5d16 100644 --- a/src/Place.vala +++ b/src/Place.vala @@ -1,4 +1,8 @@ namespace CairoChart { + + /** + * + */ public class Place { double _x_min = 0; double _x_max = 0; @@ -39,7 +43,10 @@ namespace CairoChart { } public Place (double x_min = 0, - double x_max = 1, double y_min = 0, double y_max = 1) { + double x_max = 1, + double y_min = 0, + double y_max = 1 + ) { this.x_min = x_min; this.x_max = x_max; this.y_min = y_min; diff --git a/src/Text.vala b/src/Text.vala index 32d7fa9..1774001 100644 --- a/src/Text.vala +++ b/src/Text.vala @@ -78,7 +78,8 @@ namespace CairoChart { public Text (string text = "", Font.Style style = Font.Style(), - Color color = Color()) { + Color color = Color() + ) { this.text = text; this.style = style; this.color = color;