Skip to content

Commit

Permalink
Whitespace fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
birkett committed Mar 27, 2015
1 parent 293fc02 commit 27255fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Classes/SettingsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ public SettingsManager()
m_Settings = new List<Setting>();
m_szConfigFilePath = null;
loadSettings();
}

}//end SettingsManager()


/// <summary>
Expand Down Expand Up @@ -122,6 +123,7 @@ public struct Setting
public Setting getSetting(string szName)
{
return m_Settings.Find(x => x.m_szName.Equals(szName));

}//end getSetting() String


Expand Down Expand Up @@ -197,6 +199,7 @@ public void loadSettings()
{
m_Settings = ser.Deserialize<List<Setting>>(json);
}

}//end loadSettings()


Expand Down
2 changes: 1 addition & 1 deletion Forms/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private void addLogEntry(ListViewItem entry)
{
listViewLog.Items.Add(entry);

}
}//end addLogEntry()

/// <summary>
/// Delegate for addLogEntry()
Expand Down

0 comments on commit 27255fe

Please sign in to comment.