Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/10/17 21:42:09 (7 years ago)
Author:
pkimmesw
Message:

#2665 Renamings due to typos, ManagedPool tests, Skip Noops in Debugger

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Views/DataEditorView.cs

    r14727 r14744  
    22
    33namespace HeuristicLab.BenchmarkSuite.Views {
    4 
    5   using HeuristicLab.BenchmarkSuite.Problems;
    64  using HeuristicLab.Core.Views;
    75  using HeuristicLab.MainForm;
    86
    97  [View("Push Expression Selection Editor")]
    10   [Content(typeof(Data), true)]
     8  [Content(typeof(IBenchmarkSuiteDataDescriptor), true)]
    119  public partial class DataEditorView : NamedItemView {
    1210    public DataEditorView() {
     
    3533
    3634      try {
    37         var newExample = Content.ExampleParser.ParseExample(inputArgs, outputArgs);
     35        var newExample = Content.ParseExample(inputArgs, outputArgs);
    3836        newExample.CopyTo(example);
    3937      }
     
    4846    }
    4947
    50     public new Data Content
     48    public new IBenchmarkSuiteDataDescriptor Content
    5149    {
    52       get { return (Data)base.Content; }
     50      get { return (IBenchmarkSuiteDataDescriptor)base.Content; }
    5351      set
    5452      {
     
    6462
    6563    protected override void OnContentChanged() {
    66       const string inputPrefix = "in_";
    67       const string outputPrefix = "out_";
    68 
    6964      dataGridView.Columns.Clear();
    7065      dataGridView.Rows.Clear();
Note: See TracChangeset for help on using the changeset viewer.