Changeset 13338 for branches/RefactorPluginInfrastructure-2522/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation
- Timestamp:
- 11/23/15 16:14:30 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RefactorPluginInfrastructure-2522/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/FeatureCorrelationCalculator.cs
r12509 r13338 24 24 using System.ComponentModel; 25 25 using System.Linq; 26 using HeuristicLab.MainForm; 26 27 using HeuristicLab.PluginInfrastructure; 27 28 … … 211 212 if (!e.Cancelled && !worker.CancellationPending) { 212 213 if (e.Error != null) { 213 ErrorHandling.ShowErrorDialog(e.Error);214 MainFormManager.MainForm.ShowError(e.Error.Message, e.Error); 214 215 } else { 215 216 OnCorrelationCalculationFinished((double[,])e.Result, bwInfo.Calculator, bwInfo.Partition, bwInfo.Variable);
Note: See TracChangeset
for help on using the changeset viewer.