Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/19/11 13:52:12 (13 years ago)
Author:
mkommend
Message:

#1532:

  • Enabled renaming of symbols
  • Fixed cloning of grammers
  • Added readonly attribute in grammars to lock grammars during the algorithm run
  • Removed useless clone method in cloner
  • Changed CheckedItemCollectionViews to enable scrolling during the locked state
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Symbols/VariableView.cs

    r5809 r6233  
    2323using System.Linq;
    2424using System.Windows.Forms;
     25using HeuristicLab.Collections;
     26using HeuristicLab.Core;
     27using HeuristicLab.Core.Views;
     28using HeuristicLab.Data;
    2529using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
    2630using HeuristicLab.MainForm;
    2731using HeuristicLab.MainForm.WindowsForms;
    28 using HeuristicLab.Core;
    29 using HeuristicLab.Data;
    30 using HeuristicLab.Core.Views;
    31 using HeuristicLab.Collections;
    3232
    3333
     
    8181    protected override void OnContentChanged() {
    8282      base.OnContentChanged();
     83      variableNamesView.Content.Clear();
    8384      UpdateControl();
    8485    }
     
    162163      } else {
    163164        var existingEntries = variableNamesView.Content.Select(x => x.Value);
    164        
     165
    165166        // temporarily deregister to prevent circular calling of events
    166167        DeregisterVariableNamesViewContentEvents();
Note: See TracChangeset for help on using the changeset viewer.