- Timestamp:
- 05/19/11 13:52:12 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Symbols/VariableView.cs
r5809 r6233 23 23 using System.Linq; 24 24 using System.Windows.Forms; 25 using HeuristicLab.Collections; 26 using HeuristicLab.Core; 27 using HeuristicLab.Core.Views; 28 using HeuristicLab.Data; 25 29 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views; 26 30 using HeuristicLab.MainForm; 27 31 using HeuristicLab.MainForm.WindowsForms; 28 using HeuristicLab.Core;29 using HeuristicLab.Data;30 using HeuristicLab.Core.Views;31 using HeuristicLab.Collections;32 32 33 33 … … 81 81 protected override void OnContentChanged() { 82 82 base.OnContentChanged(); 83 variableNamesView.Content.Clear(); 83 84 UpdateControl(); 84 85 } … … 162 163 } else { 163 164 var existingEntries = variableNamesView.Content.Select(x => x.Value); 164 165 165 166 // temporarily deregister to prevent circular calling of events 166 167 DeregisterVariableNamesViewContentEvents();
Note: See TracChangeset
for help on using the changeset viewer.