Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/11/10 04:26:09 (14 years ago)
Author:
swagner
Message:

Implemented ErrorDialog and OperatorExecutionException (#1007)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.cs

    r3455 r3758  
    3737using HeuristicLab.Operators.Views;
    3838using HeuristicLab.MainForm;
     39using HeuristicLab.PluginInfrastructure;
    3940
    4041namespace HeuristicLab.Operators.Programmable {
     
    134135        MessageBox.Show("Compilation successful", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
    135136      } catch (Exception ex) {
    136         Auxiliary.ShowErrorMessageBox(ex);
     137        ErrorHandling.ShowErrorDialog(this, ex);
    137138      }
    138139      OnContentChanged();
Note: See TracChangeset for help on using the changeset viewer.