Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/30/10 10:17:22 (15 years ago)
Author:
mkommend
Message:

removed ctors with contents in all views (ticket #972)

Location:
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/AsynchronousContentView.cs

    r3437 r3566  
    1414    public AsynchronousContentView() {
    1515      InitializeComponent();
    16     }
    17 
    18     public AsynchronousContentView(IContent content)
    19       : this() {
    20       this.Content = content;
    2116    }
    2217
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/ContentView.cs

    r3557 r3566  
    3333namespace HeuristicLab.MainForm.WindowsForms {
    3434  public partial class ContentView : View, IContentView {
     35    public ContentView()
     36      : base() {
     37      InitializeComponent();
     38      this.locked = false;
     39    }
     40
    3541    private IContent content;
    3642    public IContent Content {
     
    5157        }
    5258      }
    53     }
    54 
    55     public ContentView()
    56       : base() {
    57       InitializeComponent();
    58       this.locked = false;
    5959    }
    6060
Note: See TracChangeset for help on using the changeset viewer.