Upgrade to Vala 42.2.

develop
Kolan Sh 2018-10-17 11:17:05 +03:00
父节点 4b66489034
当前提交 b7d44b3dd6
共有 1 个文件被更改,包括 1 次插入2 次删除

查看文件

@ -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 {