Upgrade to Vala 42.2.
This commit is contained in:
parent
4b66489034
commit
b7d44b3dd6
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue