Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/11/14 14:47:42 (10 years ago)
Author:
pfleck
Message:
  • Simplified export in PreprocessingContext
  • Implemented export of DataAnalysisProblemData
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/DataPreprocessingView.cs

    r10987 r10990  
    9898      viewShortcutListView.Enabled = Content != null;
    9999      applyInNewTabButton.Enabled = Content != null;
    100       exportProblemButton.Enabled = Content != null;
     100      exportProblemButton.Enabled = Content != null && Content.Problem != null;
    101101      undoButton.Enabled = Content != null;
    102102    }
     
    120120
    121121    private void applyInNewTabButton_Click(object sender, EventArgs e) {
    122       var item = Content.ExportAlgorithmOrProblem();
     122      var item = Content.Export();
    123123
    124124      MainFormManager.MainForm.ShowContent(item);
Note: See TracChangeset for help on using the changeset viewer.