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)

Location:
trunk/sources/HeuristicLab.Parameters.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueLookupParameterView.cs

    r3694 r3758  
    2626using HeuristicLab.Core.Views;
    2727using HeuristicLab.MainForm;
     28using HeuristicLab.PluginInfrastructure;
    2829
    2930namespace HeuristicLab.Parameters.Views {
     
    133134        }
    134135        catch (Exception ex) {
    135           Auxiliary.ShowErrorMessageBox(ex);
     136          ErrorHandling.ShowErrorDialog(this, ex);
    136137        }
    137138      }
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueParameterView.cs

    r3694 r3758  
    2626using HeuristicLab.Core.Views;
    2727using HeuristicLab.MainForm;
     28using HeuristicLab.PluginInfrastructure;
    2829
    2930namespace HeuristicLab.Parameters.Views {
     
    121122        }
    122123        catch (Exception ex) {
    123           Auxiliary.ShowErrorMessageBox(ex);
     124          ErrorHandling.ShowErrorDialog(this, ex);
    124125        }
    125126      }
Note: See TracChangeset for help on using the changeset viewer.