Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/27/13 12:04:13 (11 years ago)
Author:
ascheibe
Message:

#2099 renamed run collection views

File:
1 moved

Legend:

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

    r9909 r9910  
    2929
    3030namespace HeuristicLab.Optimization.Views {
    31   [View("RunCollection Tabular View")]
     31  [View("Table")]
    3232  [Content(typeof(RunCollection), false)]
    33   public sealed partial class RunCollectionTabularView : StringConvertibleMatrixView {
     33  public sealed partial class RunCollectionTableView : StringConvertibleMatrixView {
    3434    private int[] runToRowMapping;
    3535    private bool suppressUpdates = false;
    36     public RunCollectionTabularView() {
     36    public RunCollectionTableView() {
    3737      InitializeComponent();
    3838      dataGridView.RowHeaderMouseDoubleClick += new DataGridViewCellMouseEventHandler(dataGridView_RowHeaderMouseDoubleClick);
     
    112112
    113113    private void UpdateCaption() {
    114       Caption = Content != null ? Content.OptimizerName + " Tabular View" : ViewAttribute.GetViewName(GetType());
     114      Caption = Content != null ? Content.OptimizerName + " Table" : ViewAttribute.GetViewName(GetType());
    115115    }
    116116
Note: See TracChangeset for help on using the changeset viewer.