Changeset 10786 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/CheckedTransformationCollectionView.cs
- Timestamp:
- 04/23/14 15:56:31 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/CheckedTransformationCollectionView.cs
r10778 r10786 52 52 if (typeSelectorDialog.ShowDialog(this) == DialogResult.OK) { 53 53 try { 54 var columNames = new[] { "dummy", "target" }.AsEnumerable(); 55 return (ITransformation)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType(new[] { columNames }); 54 // TODO: 55 var columnNames = Enumerable.Range(0, 10).Select(i => "x" + i); 56 //var columnNames = new[] { "dummy", "target" }.AsEnumerable(); 57 return (ITransformation)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType(new[] { columnNames }); 56 58 } catch (Exception ex) { 57 59 ErrorHandling.ShowErrorDialog(this, ex);
Note: See TracChangeset
for help on using the changeset viewer.