Skip to content

Commit 496d101

Browse files
just a bit of formatting and renaming regions.
1 parent ca0a5a1 commit 496d101

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

Assets/HoloToolkit/Utilities/Scripts/Editor/AutoConfigureWindow.cs

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace HoloToolkit.Unity
1313
/// </summary>
1414
public abstract class AutoConfigureWindow<TSetting> : EditorWindow
1515
{
16-
#region Member Variables
16+
#region Member Fields
1717

1818
private Dictionary<TSetting, bool> values = new Dictionary<TSetting, bool>();
1919
private Dictionary<TSetting, string> names = new Dictionary<TSetting, string>();
@@ -23,9 +23,10 @@ public abstract class AutoConfigureWindow<TSetting> : EditorWindow
2323
private Vector2 scrollPosition = Vector2.zero;
2424
private GUIStyle wrapStyle;
2525

26-
#endregion // Member Variables
26+
#endregion // Member Fields
2727

2828
#region Internal Methods
29+
2930
private void SettingToggle(TSetting setting)
3031
{
3132
EditorGUI.BeginChangeCheck();
@@ -46,6 +47,11 @@ private void SettingToggle(TSetting setting)
4647
}
4748
}
4849

50+
/// <summary>
51+
/// Gets or sets the status message displayed at the bottom of the window.
52+
/// </summary>
53+
private string StatusMessage { get { return statusMessage; } set { statusMessage = value; } }
54+
4955
#endregion // Internal Methods
5056

5157
#region Overridables / Event Triggers
@@ -127,7 +133,7 @@ protected virtual void OnGUI()
127133

128134
#endregion // Overrides / Event Handlers
129135

130-
#region Public Properties
136+
#region Protected Properties
131137

132138
/// <summary>
133139
/// Gets the descriptions of the settings.
@@ -177,11 +183,6 @@ protected Dictionary<TSetting, bool> Values
177183
}
178184
}
179185

180-
/// <summary>
181-
/// Gets or sets the status message displayed at the bottom of the window.
182-
/// </summary>
183-
private string StatusMessage { get { return statusMessage; } set { statusMessage = value; } }
184-
185-
#endregion // Public Properties
186+
#endregion // Protected Properties
186187
}
187188
}

0 commit comments

Comments
 (0)