Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/13/10 06:41:56 (14 years ago)
Author:
swagner
Message:

Implemented ReadOnlyView property for items (#969).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/ItemList.cs

    r3306 r3317  
    5757      ItemList<T> clone = (ItemList<T>)Activator.CreateInstance(this.GetType());
    5858      cloner.RegisterClonedObject(this, clone);
     59      clone.ReadOnlyView = ReadOnlyView;
    5960      clone.list = new List<T>(this.Select(x => (T)cloner.Clone(x)));
    6061      return clone;
Note: See TracChangeset for help on using the changeset viewer.