Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/28/12 11:16:11 (11 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/RunCollectionBoxPlotView.cs

    r8738 r8962  
    7575      Content.CollectionReset += new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
    7676      Content.UpdateOfRunsInProgressChanged += new EventHandler(Content_UpdateOfRunsInProgressChanged);
    77       Content.AlgorithmNameChanged += new EventHandler(Content_AlgorithmNameChanged);
     77      Content.OptimizerNameChanged += new EventHandler(Content_AlgorithmNameChanged);
    7878      RegisterRunEvents(Content);
    7979    }
     
    8686      Content.CollectionReset -= new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
    8787      Content.UpdateOfRunsInProgressChanged -= new EventHandler(Content_UpdateOfRunsInProgressChanged);
    88       Content.AlgorithmNameChanged -= new EventHandler(Content_AlgorithmNameChanged);
     88      Content.OptimizerNameChanged -= new EventHandler(Content_AlgorithmNameChanged);
    8989      DeregisterRunEvents(Content);
    9090    }
     
    159159
    160160    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());
    162162    }
    163163
Note: See TracChangeset for help on using the changeset viewer.