Changeset 10945
- Timestamp:
- 06/04/14 14:40:57 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/TransformationView.cs
r10902 r10945 25 25 using HeuristicLab.MainForm; 26 26 using HeuristicLab.MainForm.WindowsForms; 27 using HeuristicLab.Problems.DataAnalysis.Transformations; 27 28 28 29 namespace HeuristicLab.DataPreprocessing.Views { … … 53 54 var transformations = Content.CheckedTransformationList.CheckedItems.Select(x => x.Value); 54 55 56 if (transformations.Any(x => ((Transformation)x).ColumnParameter.Value == null)) { 57 MessageBox.Show(this, "Parameter \"Column\" of a selected Transformation is not set.", "Applying Transformations...", MessageBoxButtons.OK, MessageBoxIcon.Warning); 58 return; 59 } 60 55 61 var transformator = new PreprocessingTransformator(Content.Data); 56 62 string errorMsg; … … 64 70 "Transformation failed", MessageBoxButtons.OK, MessageBoxIcon.Warning); 65 71 } 66 67 72 } 68 73 }
Note: See TracChangeset
for help on using the changeset viewer.