Changeset 12544
- Timestamp:
- 06/30/15 11:05:23 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessingImprovements/HeuristicLab.DataPreprocessing.Views/3.4/DataPreprocessorStarter.cs
r12012 r12544 44 44 IContentView contentView = control as IContentView; 45 45 if (contentView != null) { 46 algorithm = contentView.Content as IAlgorithm; 47 problem = contentView.Content as IDataAnalysisProblem; 46 var newAlgorithm = contentView.Content as IAlgorithm; 47 if (newAlgorithm != null) 48 algorithm = newAlgorithm; 49 var newProblem = contentView.Content as IDataAnalysisProblem; 50 if (newProblem != null) 51 problem = newProblem; 48 52 } 49 53 control = control.Parent;
Note: See TracChangeset
for help on using the changeset viewer.