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 {