- Timestamp:
- 01/27/15 09:15:21 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Scripting.Views/3.3/VariableStoreView.cs
r11734 r11826 47 47 #endregion 48 48 49 private readonly Regex SafeVariableNameRegex = new Regex("^[@]?[_a-zA-Z][_a-zA-Z0-9]*$"); 50 private const string DefaultVariableName = "enter_name"; 49 51 protected readonly Dictionary<string, ListViewItem> itemListViewItemMapping; 50 52 protected readonly Dictionary<Type, bool> serializableLookup; … … 288 290 } 289 291 290 private readonly Regex SafeVariableNameRegex = new Regex("^[@]?[_a-zA-Z][_a-zA-Z0-9]*$");291 private const string DefaultVariableName = "enter_name";292 293 292 private void variableListView_AfterLabelEdit(object sender, LabelEditEventArgs e) { 294 293 string name = e.Label;
Note: See TracChangeset
for help on using the changeset viewer.