Winify – Diff between revs 71 and 73

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 71 Rev 73
Line 51... Line 51...
51 _lingerTime = value; 51 _lingerTime = value;
52 OnPropertyChanged(); 52 OnPropertyChanged();
53 } 53 }
54 } 54 }
Line 55... Line 55...
55   55  
56 [XmlElement(ElementName = "Speak")] 56 [XmlElement(ElementName = "Ignore")]
57 public string Speak 57 public bool Ignore
58 { 58 {
59 get => _speak; 59 get => _ignore;
60 set 60 set
61 { 61 {
Line 62... Line 62...
62 if (value == _speak) return; 62 if (value == _ignore) return;
63   63  
64 _speak = value; 64 _ignore = value;
65 OnPropertyChanged(); 65 OnPropertyChanged();
Line 66... Line 66...
66 } 66 }
67 } 67 }
68   68  
69 [XmlElement(ElementName = "Ignore")] 69 [XmlElement(ElementName = "Chime")]
70 public bool Ignore 70 public bool EnableChime
71 { 71 {
72 get => _ignore; 72 get => _enableChime;
Line 73... Line 73...
73 set 73 set
74 { 74 {
75 if (value == _ignore) return; 75 if (value == _enableChime) return;
76   76  
Line 77... Line 77...
77 _ignore = value; 77 _enableChime = value;
Line 89... Line 89...
89   89  
Line 90... Line 90...
90 private string _speak = string.Empty; 90 private string _speak = string.Empty;
Line -... Line 91...
-   91  
-   92 private bool _ignore = false;
91   93  
Line 92... Line 94...
92 private bool _ignore = false; 94 private bool _enableChime = true;
Line 93... Line 95...
93   95  
94 #endregion 96 #endregion
95   97  
96 #region Constructors, Destructors and Finalizers 98 #region Constructors, Destructors and Finalizers
Line 97... Line -...
97   -  
98 [UsedImplicitly] -  
99 public Announcement() -  
100 { -  
101 } -  
102   -  
103 public Announcement(int appId, int lingerTime, string speak) : this() -  
104 { 99  
105 AppId = appId; 100 [UsedImplicitly]
106 LingerTime = lingerTime; 101 public Announcement()
107 Speak = speak; 102 {