1
0
포크 0

Upgrade to Vala 42.2.

This commit is contained in:
Kolan Sh 2018-10-17 11:22:59 +03:00
부모 bcd11324d8
커밋 a984cf4fad
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@ -3,7 +3,7 @@ namespace LAview.ObjectExample {
public class AppSettings : Object {
Settings settings;
string _greeting;
string _greeting = "lyx";
public string greeting {
get { return _greeting; }
@ -11,7 +11,6 @@ namespace LAview.ObjectExample {
if (settings != null) settings.set_string ("greeting", value);
_greeting = value;
}
default = "lyx";
}
public AppSettings () throws Error {