Free cookie consent management tool by TermsFeed Policy Generator

Changeset 14371 for trunk/sources


Ignore:
Timestamp:
11/04/16 17:46:16 (7 years ago)
Author:
mkommend
Message:

#2663: Fixed minor type in comment of PreprocessingChartView (uncheckt -> unchecked).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingChartView.cs

    r14270 r14371  
    7575          PreprocessingDataTable pdt = new PreprocessingDataTable(variableName);
    7676          pdt.Rows.Add(row);
    77           // dataTablePerVariable does not contain unchecked variables => reduce insert position by number of uncheckt variables to correct the index
     77          // dataTablePerVariable does not contain unchecked variables => reduce insert position by number of unchecked variables to correct the index
    7878          int uncheckedUntilVariable = checkedItemList.Content.TakeWhile(x => x.Value != variableName).Count(x => !checkedItemList.Content.ItemChecked(x));
    7979          dataTablePerVariable.Insert(item.Index - uncheckedUntilVariable, pdt);
Note: See TracChangeset for help on using the changeset viewer.