1.1 --- a/GUI/UnitManager.cs Sun Jun 19 12:41:18 2011 +0000
1.2 +++ b/GUI/UnitManager.cs Sun Jun 19 12:51:17 2011 +0000
1.3 @@ -16,7 +16,7 @@
1.4
1.5 The Initial Developer of the Original Code is
1.6 Michael Möller <m.moeller@gmx.ch>.
1.7 - Portions created by the Initial Developer are Copyright (C) 2009-2010
1.8 + Portions created by the Initial Developer are Copyright (C) 2009-2011
1.9 the Initial Developer. All Rights Reserved.
1.10
1.11 Contributor(s):
1.12 @@ -41,7 +41,7 @@
1.13 namespace OpenHardwareMonitor.GUI {
1.14
1.15 public enum TemperatureUnit {
1.16 - Celcius = 0,
1.17 + Celsius = 0,
1.18 Fahrenheit = 1
1.19 }
1.20
1.21 @@ -53,7 +53,7 @@
1.22 public UnitManager(PersistentSettings settings) {
1.23 this.settings = settings;
1.24 this.temperatureUnit = (TemperatureUnit)settings.GetValue("TemperatureUnit",
1.25 - (int)TemperatureUnit.Celcius);
1.26 + (int)TemperatureUnit.Celsius);
1.27 }
1.28
1.29 public TemperatureUnit TemperatureUnit {