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
Location:
trunk/sources/HeuristicLab.Data.Views/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data.Views/3.3/BoolDataView.cs

    r2713 r2727  
    4343      Caption = "BoolData View";
    4444    }
    45     public BoolDataView(BoolData boolData)
     45    public BoolDataView(BoolData content)
    4646      : this() {
    47       Content = boolData;
     47      Content = content;
    4848    }
    4949
  • trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleDataView.cs

    r2713 r2727  
    4646      errorProvider.SetIconPadding(valueTextBox, 2);
    4747    }
    48     public StringConvertibleDataView(IStringConvertibleData stringConvertibleData)
     48    public StringConvertibleDataView(IStringConvertibleData content)
    4949      : this() {
    50       Content = stringConvertibleData;
     50      Content = content;
    5151    }
    5252
  • trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixDataView.cs

    r2713 r2727  
    4949      errorProvider.SetIconPadding(columnsTextBox, 2);
    5050    }
    51     public StringConvertibleMatrixDataView(IStringConvertibleMatrixData stringConvertibleArrayData)
     51    public StringConvertibleMatrixDataView(IStringConvertibleMatrixData content)
    5252      : this() {
    53       Content = stringConvertibleArrayData;
     53      Content = content;
    5454    }
    5555
Note: See TracChangeset for help on using the changeset viewer.