Upgrade to Vala 42.2.

This commit is contained in:
Kolan Sh 2018-10-17 11:17:05 +03:00
parent 4b66489034
commit b7d44b3dd6
1 changed files with 1 additions and 2 deletions

View File

@ -3,14 +3,13 @@ namespace LAview.Desktop {
public class AppSettings { public class AppSettings {
Settings settings; Settings settings;
string _pdf_save_path; string _pdf_save_path = "";
public string pdf_save_path { public string pdf_save_path {
get { return _pdf_save_path; } get { return _pdf_save_path; }
set { set {
if (settings != null) settings.set_string ("pdf-save-path", value); if (settings != null) settings.set_string ("pdf-save-path", value);
_pdf_save_path = value; _pdf_save_path = value;
} }
default = "";
} }
public AppSettings () throws Error { public AppSettings () throws Error {