Changeset 13338 for branches/RefactorPluginInfrastructure-2522/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks
- Timestamp:
- 11/23/15 16:14:30 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RefactorPluginInfrastructure-2522/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/OptimizerHiveTaskView.cs
r12012 r13338 77 77 task.ContinueWith((t) => { 78 78 Content.Progress.Finish(); 79 ErrorHandling.ShowErrorDialog(this,"An error occured while resuming the task.", t.Exception);79 MainFormManager.MainForm.ShowError("An error occured while resuming the task.", t.Exception); 80 80 }, TaskContinuationOptions.OnlyOnFaulted); 81 81 } … … 85 85 task.ContinueWith((t) => { 86 86 Content.Progress.Finish(); 87 ErrorHandling.ShowErrorDialog(this,"An error occured while pausing the task.", t.Exception);87 MainFormManager.MainForm.ShowError("An error occured while pausing the task.", t.Exception); 88 88 }, TaskContinuationOptions.OnlyOnFaulted); 89 89 } … … 93 93 task.ContinueWith((t) => { 94 94 Content.Progress.Finish(); 95 ErrorHandling.ShowErrorDialog(this,"An error occured while stopping the task.", t.Exception);95 MainFormManager.MainForm.ShowError("An error occured while stopping the task.", t.Exception); 96 96 }, TaskContinuationOptions.OnlyOnFaulted); 97 97 }
Note: See TracChangeset
for help on using the changeset viewer.