Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/18/10 03:00:00 (14 years ago)
Author:
swagner
Message:

Changed items and views according to the refactoring of HeuristicLab.Collections (#977)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionView.cs

    r3367 r3393  
    2121
    2222using HeuristicLab.Collections;
     23using HeuristicLab.Core;
    2324using HeuristicLab.Core.Views;
    2425using HeuristicLab.MainForm;
     
    3132  [View("RunCollection View")]
    3233  [Content(typeof(RunCollection), true)]
    33   [Content(typeof(IObservableCollection<IRun>), false)]
     34  [Content(typeof(IItemCollection<IRun>), false)]
    3435  public partial class RunCollectionView : AsynchronousContentView {
    35     public new IObservableCollection<IRun> Content {
    36       get { return (IObservableCollection<IRun>)base.Content; }
     36    public new IItemCollection<IRun> Content {
     37      get { return (IItemCollection<IRun>)base.Content; }
    3738      set { base.Content = value; }
    3839    }
     
    4748    }
    4849
    49     public RunCollectionView(IObservableCollection<IRun> content)
     50    public RunCollectionView(IItemCollection<IRun> content)
    5051      : this() {
    5152      Content = content;
Note: See TracChangeset for help on using the changeset viewer.