Upgrade to Vala 42.2.

This commit is contained in:
Kolan Sh 2018-10-17 11:05:59 +03:00
parent 82a991464d
commit 72cd7181e1
4 changed files with 0 additions and 7 deletions

View File

@ -102,7 +102,6 @@ namespace CairoChart {
// TODO: check format // TODO: check format
_format = value; _format = value;
} }
default = "%.2Lf";
} }
/** /**
@ -114,7 +113,6 @@ namespace CairoChart {
// TODO: check format // TODO: check format
_date_format = value; _date_format = value;
} }
default = "%Y.%m.%d";
} }
/** /**
@ -126,7 +124,6 @@ namespace CairoChart {
// TODO: check format // TODO: check format
_time_format = value; _time_format = value;
} }
default = "%H:%M:%S";
} }
/** /**
@ -140,7 +137,6 @@ namespace CairoChart {
// TODO: check format // TODO: check format
_dsec_signs = value; _dsec_signs = value;
} }
default = 2;
} }
/** /**

View File

@ -96,7 +96,6 @@ namespace CairoChart {
public virtual Color color { public virtual Color color {
protected get { return Color(); } protected get { return Color(); }
set { ctx.set_source_rgba (value.red, value.green, value.blue, value.alpha); } set { ctx.set_source_rgba (value.red, value.green, value.blue, value.alpha); }
default = Color();
} }
/** /**

View File

@ -51,7 +51,6 @@ namespace CairoChart {
set { set {
vspacing = hspacing = value; vspacing = hspacing = value;
} }
default = 2;
} }
/** /**

View File

@ -77,7 +77,6 @@ namespace CairoChart {
axis_x.grid_style.color.green = axis_y.grid_style.color.green = value.green; axis_x.grid_style.color.green = axis_y.grid_style.color.green = value.green;
axis_x.grid_style.color.blue = axis_y.grid_style.color.blue = value.blue; axis_x.grid_style.color.blue = axis_y.grid_style.color.blue = value.blue;
} }
default = Color (0, 0, 0, 1);
} }
/** /**