Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/30/10 10:17:22 (14 years ago)
Author:
mkommend
Message:

removed ctors with contents in all views (ticket #972)

Location:
trunk/sources/HeuristicLab.Operators.Views/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Views/3.3/AlgorithmOperatorView.cs

    r3455 r3566  
    4343    public AlgorithmOperatorView() {
    4444      InitializeComponent();
    45     }
    46     /// <summary>
    47     /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.
    48     /// </summary>
    49     /// <param name="item">The item that should be displayed.</param>
    50     public AlgorithmOperatorView(AlgorithmOperator content)
    51       : this() {
    52       Content = content;
    5345    }
    5446
  • trunk/sources/HeuristicLab.Operators.Views/3.3/MultiOperatorView.cs

    r3455 r3566  
    4343    public MultiOperatorView() {
    4444      InitializeComponent();
    45     }
    46     /// <summary>
    47     /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.
    48     /// </summary>
    49     /// <param name="item">The item that should be displayed.</param>
    50     public MultiOperatorView(MultiOperator<T> content)
    51       : this() {
    52       Content = content;
    5345    }
    5446
  • trunk/sources/HeuristicLab.Operators.Views/3.3/OperatorView.cs

    r3454 r3566  
    4444    public OperatorView() {
    4545      InitializeComponent();
    46     }
    47     /// <summary>
    48     /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.
    49     /// </summary>
    50     /// <param name="item">The item that should be displayed.</param>
    51     public OperatorView(IOperator content)
    52       : this() {
    53       Content = content;
    5446    }
    5547
  • trunk/sources/HeuristicLab.Operators.Views/3.3/ValuesCollectorView.cs

    r3455 r3566  
    4343    public ValuesCollectorView() {
    4444      InitializeComponent();
    45     }
    46     /// <summary>
    47     /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.
    48     /// </summary>
    49     /// <param name="item">The item that should be displayed.</param>
    50     public ValuesCollectorView(ValuesCollector content)
    51       : this() {
    52       Content = content;
    5345    }
    5446
Note: See TracChangeset for help on using the changeset viewer.