Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/10 05:05:19 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on content definitions of views
  • corrected bug in cloning of CombinedOperator
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/OperatorCollectionView.cs

    r2713 r2727  
    1212namespace HeuristicLab.Core.Views {
    1313  [Content(typeof(OperatorCollection), true)]
    14   [Content(typeof(IObservableCollection<IOperator>), true)]
     14  [Content(typeof(IObservableCollection<IOperator>), false)]
    1515  public partial class OperatorCollectionView : ItemCollectionView<IOperator> {
    1616    protected TypeSelectorDialog typeSelectorDialog;
     
    3030    /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>
    3131    /// <param name="scope">The scope whose variables should be represented visually.</param>
    32     public OperatorCollectionView(IObservableCollection<IOperator> operatorCollection)
     32    public OperatorCollectionView(IObservableCollection<IOperator> content)
    3333      : this() {
    34       Content = operatorCollection;
     34      Content = content;
    3535    }
    3636
Note: See TracChangeset for help on using the changeset viewer.