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 ha cambiato i file con 1 aggiunte e 2 eliminazioni

Vedi File

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