Changeset 8962 for trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBoxPlotView.cs
- Timestamp:
- 11/28/12 11:16:11 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBoxPlotView.cs
r8738 r8962 75 75 Content.CollectionReset += new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset); 76 76 Content.UpdateOfRunsInProgressChanged += new EventHandler(Content_UpdateOfRunsInProgressChanged); 77 Content. AlgorithmNameChanged += new EventHandler(Content_AlgorithmNameChanged);77 Content.OptimizerNameChanged += new EventHandler(Content_AlgorithmNameChanged); 78 78 RegisterRunEvents(Content); 79 79 } … … 86 86 Content.CollectionReset -= new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset); 87 87 Content.UpdateOfRunsInProgressChanged -= new EventHandler(Content_UpdateOfRunsInProgressChanged); 88 Content. AlgorithmNameChanged -= new EventHandler(Content_AlgorithmNameChanged);88 Content.OptimizerNameChanged -= new EventHandler(Content_AlgorithmNameChanged); 89 89 DeregisterRunEvents(Content); 90 90 } … … 159 159 160 160 private void UpdateCaption() { 161 Caption = Content != null ? Content. AlgorithmName + "Box Plots" : ViewAttribute.GetViewName(GetType());161 Caption = Content != null ? Content.OptimizerName + " Box Plots" : ViewAttribute.GetViewName(GetType()); 162 162 } 163 163
Note: See TracChangeset
for help on using the changeset viewer.