HamBook – Diff between revs 9 and 10

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 9 Rev 10
Line 20... Line 20...
20 private RJCP.IO.Ports.StopBits _stopBits = RJCP.IO.Ports.StopBits.One; 20 private RJCP.IO.Ports.StopBits _stopBits = RJCP.IO.Ports.StopBits.One;
21 private Definitions _definitions = new Definitions(); 21 private Definitions _definitions = new Definitions();
22 private RJCP.IO.Ports.Handshake _handshake = RJCP.IO.Ports.Handshake.None; 22 private RJCP.IO.Ports.Handshake _handshake = RJCP.IO.Ports.Handshake.None;
23 private SerialPortTimeout _serialPortTimeout = new SerialPortTimeout(); 23 private SerialPortTimeout _serialPortTimeout = new SerialPortTimeout();
24 private int _scanDetectPause = 10; 24 private int _scanDetectPause = 10;
-   25 private Audio _audio = new Audio();
Line 25... Line 26...
25   26  
26 public bool LaunchOnBoot 27 public bool LaunchOnBoot
27 { 28 {
28 get => _launchOnBoot; 29 get => _launchOnBoot;
Line 184... Line 185...
184 _definitions = value; 185 _definitions = value;
185 OnPropertyChanged(); 186 OnPropertyChanged();
186 } 187 }
187 } 188 }
Line -... Line 189...
-   189  
-   190 public Audio Audio
-   191 {
-   192 get => _audio;
-   193 set
-   194 {
-   195 if (value == _audio)
-   196 {
-   197 return;
-   198 }
-   199  
-   200 _audio = value;
-   201 OnPropertyChanged();
-   202 }
-   203 }
188   204  
189 public Configuration() 205 public Configuration()
190 { 206 {
Line 191... Line 207...
191 } 207 }