Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/13/10 17:41:40 (14 years ago)
Author:
mkommend
Message:

changed RowHeaderWidth in StringConvertibleMatrixView and removed warning from RunCollection (ticket #968)

File:
1 edited

Legend:

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

    r3329 r3333  
    197197
    198198    public event EventHandler SortableViewChanged;
     199    protected virtual void OnSortableViewChanged() {
     200      EventHandler handler = SortableViewChanged;
     201      if (handler != null)
     202        handler(this, EventArgs.Empty);
     203    }
     204
    199205    public bool Validate(string value, out string errorMessage) { throw new NotSupportedException(); }
    200206    public bool SetValue(string value, int rowIndex, int columnIndex) { throw new NotSupportedException(); }
Note: See TracChangeset for help on using the changeset viewer.