- Timestamp:
- 11/23/15 16:14:30 (9 years ago)
- Location:
- branches/RefactorPluginInfrastructure-2522/HeuristicLab.Clients.Hive.Views/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RefactorPluginInfrastructure-2522/HeuristicLab.Clients.Hive.Views/3.3/HiveItemView.cs
r12012 r13338 77 77 } 78 78 catch (Exception ex) { 79 ErrorHandling.ShowErrorDialog(this,"Store failed.", ex);79 MainFormManager.MainForm.ShowError("Store failed.", ex); 80 80 } 81 81 } -
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 } -
branches/RefactorPluginInfrastructure-2522/HeuristicLab.Clients.Hive.Views/3.3/TreeView/ItemTreeView.cs
r12012 r13338 418 418 } 419 419 catch (Exception ex) { 420 ErrorHandling.ShowErrorDialog(this, ex);420 MainFormManager.MainForm.ShowError(ex.Message, ex); 421 421 } 422 422 }
Note: See TracChangeset
for help on using the changeset viewer.