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).

Location:
trunk/sources/HeuristicLab.Analysis/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis/3.3/DataRow.cs

    r3160 r3317  
    5353      DataRow clone = new DataRow(Name, Description);
    5454      cloner.RegisterClonedObject(this, clone);
     55      clone.ReadOnlyView = ReadOnlyView;
    5556      clone.values.AddRange(values);
    5657      return clone;
  • trunk/sources/HeuristicLab.Analysis/3.3/DataTable.cs

    r3306 r3317  
    5757      DataTable clone = new DataTable(Name, Description);
    5858      cloner.RegisterClonedObject(this, clone);
     59      clone.ReadOnlyView = ReadOnlyView;
    5960      clone.rows = (NamedItemCollection<DataRow>)cloner.Clone(rows);
    6061      return clone;
Note: See TracChangeset for help on using the changeset viewer.