Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/21/15 13:10:24 (9 years ago)
Author:
mkommend
Message:

#2174: Renamed scriptable to programmable problem.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/ProgrammableProblem/HeuristicLab.Problems.Programmable.Views/3.3/MultiObjectiveProgrammableProblemView.cs

    r11812 r11814  
    2828namespace HeuristicLab.Problems.Programmable.Views {
    2929  [View("Multi-Objective Programmable Problem View")]
    30   [Content(typeof(MultiObjectiveScriptableProblem), true)]
    31   public partial class MultiObjectiveScriptableProblemView : ItemView {
     30  [Content(typeof(MultiObjectiveProgrammableProblem), true)]
     31  public partial class MultiObjectiveProgrammableProblemView : ItemView {
    3232    protected ViewHost ScriptView;
    3333
    34     public new MultiObjectiveScriptableProblem Content {
    35       get { return (MultiObjectiveScriptableProblem)base.Content; }
     34    public new MultiObjectiveProgrammableProblem Content {
     35      get { return (MultiObjectiveProgrammableProblem)base.Content; }
    3636      set { base.Content = value; }
    3737    }
    3838
    39     public MultiObjectiveScriptableProblemView() {
     39    public MultiObjectiveProgrammableProblemView() {
    4040      InitializeComponent();
    4141      ScriptView = new ViewHost() { ViewsLabelVisible = false, Dock = DockStyle.Fill };
Note: See TracChangeset for help on using the changeset viewer.