Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/27/10 16:25:51 (14 years ago)
Author:
gkronber
Message:

Fixed bugs in wiring of data analysis and symbolic regression problems. #938 (Data types and operators for regression problems)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/DataAnalysisProblemDataView.cs

    r3462 r3545  
    1212namespace HeuristicLab.Problems.DataAnalysis.Views {
    1313  [View("Data-Analysis Problem View")]
    14   [Content(typeof(DataAnalysisProblemData))]
    15   public partial class DataAnalysisProblemDataView : NamedItemView {
     14  [Content(typeof(DataAnalysisProblemData), true)]
     15  public partial class DataAnalysisProblemDataView : ParameterizedNamedItemView {
    1616    private OpenFileDialog openFileDialog;
    1717    public new DataAnalysisProblemData Content {
     
    3131    }
    3232
    33     protected override void OnContentChanged() {
    34       base.OnContentChanged();
    35       variableCollectionView.Content = Content.Variables.AsReadOnly();
    36     }
    37 
    3833    private void importButton_Click(object sender, EventArgs e) {
    3934      if (openFileDialog == null) openFileDialog = new OpenFileDialog();
Note: See TracChangeset for help on using the changeset viewer.