Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/31/13 11:03:48 (12 years ago)
Author:
ascheibe
Message:

#1886

  • fixed a cloning bug
  • fixed forgotten event handler deregistration
  • added a run collection view for analyzing parameter influences
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/RunCollectionStatisticalTabularView.cs

    r9192 r9196  
    5252    }
    5353
     54    /// <summary>
     55    /// Clean up any resources being used.
     56    /// </summary>
     57    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
     58    protected override void Dispose(bool disposing) {
     59      if (disposing && (components != null)) {
     60        stringConvertibleMatrixView.DataGridView.RowHeaderMouseDoubleClick -= new DataGridViewCellMouseEventHandler(DataGridView_RowHeaderMouseDoubleClick);
     61        components.Dispose();
     62      }
     63      base.Dispose(disposing);
     64    }
     65
    5466    public new RunCollection Content {
    5567      get { return (RunCollection)base.Content; }
Note: See TracChangeset for help on using the changeset viewer.