Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/10 05:05:19 (15 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/VariableCollectionView.cs

    r2713 r2727  
    1212namespace HeuristicLab.Core.Views {
    1313  [Content(typeof(VariableCollection), true)]
    14   [Content(typeof(IObservableKeyedCollection<string, IVariable>), true)]
     14  [Content(typeof(IObservableKeyedCollection<string, IVariable>), false)]
    1515  public partial class VariableCollectionView : NamedItemCollectionView<IVariable> {
    1616    /// <summary>
     
    2828    /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>
    2929    /// <param name="scope">The scope whose variables should be represented visually.</param>
    30     public VariableCollectionView(IObservableKeyedCollection<string, IVariable> variableCollection)
     30    public VariableCollectionView(IObservableKeyedCollection<string, IVariable> content)
    3131      : this() {
    32       Content = variableCollection;
     32      Content = content;
    3333    }
    3434
Note: See TracChangeset for help on using the changeset viewer.