Changeset 13338 for branches/RefactorPluginInfrastructure-2522/HeuristicLab.Optimization.Views/3.3/IOptimizerView.cs
- Timestamp:
- 11/23/15 16:14:30 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RefactorPluginInfrastructure-2522/HeuristicLab.Optimization.Views/3.3/IOptimizerView.cs
r12012 r13338 21 21 22 22 using System; 23 using System.Windows.Forms;24 23 using HeuristicLab.Common; 25 24 using HeuristicLab.Core; 26 25 using HeuristicLab.Core.Views; 27 26 using HeuristicLab.MainForm; 28 using HeuristicLab.PluginInfrastructure;29 27 30 28 namespace HeuristicLab.Optimization.Views { … … 131 129 Invoke(new EventHandler<EventArgs<Exception>>(Content_ExceptionOccurred), sender, e); 132 130 else 133 ErrorHandling.ShowErrorDialog(this, e.Value);131 MainFormManager.MainForm.ShowError(e.Value.Message, e.Value); 134 132 } 135 133 #endregion
Note: See TracChangeset
for help on using the changeset viewer.