Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/28/12 11:16:11 (12 years ago)
Author:
mkommend
Message:

#1673: Added space in view caption between the optimizer name and the view name. Renamed AlgorithmName in RunCollection to OptimizerName as suggested by ascheibe.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBubbleChartView.cs

    r8876 r8962  
    9393      Content.CollectionReset += new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
    9494      Content.UpdateOfRunsInProgressChanged += new EventHandler(Content_UpdateOfRunsInProgressChanged);
    95       Content.AlgorithmNameChanged += new EventHandler(Content_AlgorithmNameChanged);
     95      Content.OptimizerNameChanged += new EventHandler(Content_AlgorithmNameChanged);
    9696      RegisterRunEvents(Content);
    9797    }
     
    104104      Content.CollectionReset -= new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
    105105      Content.UpdateOfRunsInProgressChanged -= new EventHandler(Content_UpdateOfRunsInProgressChanged);
    106       Content.AlgorithmNameChanged -= new EventHandler(Content_AlgorithmNameChanged);
     106      Content.OptimizerNameChanged -= new EventHandler(Content_AlgorithmNameChanged);
    107107      DeregisterRunEvents(Content);
    108108    }
     
    175175
    176176    private void UpdateCaption() {
    177       Caption = Content != null ? Content.AlgorithmName + "Bubble Chart" : ViewAttribute.GetViewName(GetType());
     177      Caption = Content != null ? Content.OptimizerName + " Bubble Chart" : ViewAttribute.GetViewName(GetType());
    178178    }
    179179
Note: See TracChangeset for help on using the changeset viewer.