Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/11/14 15:43:05 (10 years ago)
Author:
mleitner
Message:

Refactoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/ManipulationView.cs

    r10977 r11002  
    6868      if (Content != null) {
    6969        cmbVariableNames.Items.Clear();
    70         foreach (var name in Content.DataGridLogic.ColumnNames) {
     70        foreach (var name in Content.ManipulationLogic.VariableNames) {
    7171          cmbVariableNames.Items.Add(name);
    7272        }
     
    204204        if (string.IsNullOrEmpty(replaceValue)) {
    205205          lblPreviewReplaceMissingValues.Text = "Preview not possible yet - please input the text which will be used as replacement.";
    206         } else if (!Content.DataGridLogic.Validate(txtReplaceValue.Text, out errorMessage, columnIndex)) {
     206        } else if (!Content.ManipulationLogic.PreProcessingData.Validate(txtReplaceValue.Text, out errorMessage, columnIndex)) {
    207207          lblPreviewReplaceMissingValues.Text = "Preview not possible yet - " + errorMessage;
    208208        } else {
Note: See TracChangeset for help on using the changeset viewer.