Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/12/10 16:40:16 (14 years ago)
Author:
mkommend
Message:

corrected namespaces and removed resources files in HL 3.3 solution (ticket #893)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.PermutationEncoding.Views/3.3/PermutationTypeView.cs

    r3764 r3797  
    2626using HeuristicLab.MainForm;
    2727
    28 namespace HeuristicLab.Data.Views {
     28namespace HeuristicLab.Encodings.PermutationEncoding.Views {
    2929  [View("PermutationType View")]
    3030  [Content(typeof(PermutationType), true)]
    31   public partial class ComparisonView : ItemView {
     31  public partial class PermutationTypeView : ItemView {
    3232    public new PermutationType Content {
    3333      get { return (PermutationType)base.Content; }
     
    4343    }
    4444
    45     public ComparisonView() {
     45    public PermutationTypeView() {
    4646      InitializeComponent();
    4747      valueComboBox.DataSource = Enum.GetValues(typeof(PermutationTypes));
    4848    }
    49     public ComparisonView(PermutationType content)
     49    public PermutationTypeView(PermutationType content)
    5050      : this() {
    5151      Content = content;
Note: See TracChangeset for help on using the changeset viewer.