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.Core.Views/3.3
Files:
1 deleted
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/Clipboard.cs

    r3694 r3758  
    2828using HeuristicLab.MainForm;
    2929using HeuristicLab.Persistence.Default.Xml;
     30using HeuristicLab.PluginInfrastructure;
    3031
    3132namespace HeuristicLab.Core.Views {
     
    279280        }
    280281        catch (Exception ex) {
    281           Auxiliary.ShowErrorMessageBox(ex);
     282          ErrorHandling.ShowErrorDialog(this, ex);
    282283        }
    283284      }
  • trunk/sources/HeuristicLab.Core.Views/3.3/CreateParameterDialog.cs

    r2818 r3758  
    2222using System;
    2323using System.Windows.Forms;
     24using HeuristicLab.PluginInfrastructure;
    2425
    2526namespace HeuristicLab.Core.Views {
     
    4041        }
    4142        catch (Exception ex) {
    42           Auxiliary.ShowErrorMessageBox(ex);
     43          ErrorHandling.ShowErrorDialog(this, ex);
    4344        }
    4445        return null;
  • trunk/sources/HeuristicLab.Core.Views/3.3/HeuristicLab.Core.Views-3.3.csproj

    r3702 r3758  
    153153      <DependentUpon>CreateParameterDialog.cs</DependentUpon>
    154154    </Compile>
    155     <Compile Include="Auxiliary.cs" />
    156155    <Compile Include="EngineView.cs">
    157156      <SubType>UserControl</SubType>
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemArrayView.cs

    r3709 r3758  
    2727using HeuristicLab.MainForm;
    2828using HeuristicLab.MainForm.WindowsForms;
     29using HeuristicLab.PluginInfrastructure;
    2930
    3031namespace HeuristicLab.Core.Views {
     
    137138        }
    138139        catch (Exception ex) {
    139           Auxiliary.ShowErrorMessageBox(ex);
     140          ErrorHandling.ShowErrorDialog(this, ex);
    140141        }
    141142      }
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.cs

    r3709 r3758  
    2727using HeuristicLab.MainForm;
    2828using HeuristicLab.MainForm.WindowsForms;
     29using HeuristicLab.PluginInfrastructure;
    2930
    3031namespace HeuristicLab.Core.Views {
     
    112113        }
    113114        catch (Exception ex) {
    114           Auxiliary.ShowErrorMessageBox(ex);
     115          ErrorHandling.ShowErrorDialog(this, ex);
    115116        }
    116117      }
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemListView.cs

    r3709 r3758  
    2727using HeuristicLab.MainForm;
    2828using HeuristicLab.MainForm.WindowsForms;
     29using HeuristicLab.PluginInfrastructure;
    2930
    3031namespace HeuristicLab.Core.Views {
     
    140141        }
    141142        catch (Exception ex) {
    142           Auxiliary.ShowErrorMessageBox(ex);
     143          ErrorHandling.ShowErrorDialog(this, ex);
    143144        }
    144145      }
  • trunk/sources/HeuristicLab.Core.Views/3.3/OperatorCollectionView.cs

    r3588 r3758  
    2424using HeuristicLab.Collections;
    2525using HeuristicLab.MainForm;
     26using HeuristicLab.PluginInfrastructure;
    2627
    2728namespace HeuristicLab.Core.Views {
     
    5253        }
    5354        catch (Exception ex) {
    54           Auxiliary.ShowErrorMessageBox(ex);
     55          ErrorHandling.ShowErrorDialog(this, ex);
    5556        }
    5657      }
  • trunk/sources/HeuristicLab.Core.Views/3.3/OperatorListView.cs

    r3588 r3758  
    2424using HeuristicLab.Collections;
    2525using HeuristicLab.MainForm;
     26using HeuristicLab.PluginInfrastructure;
    2627
    2728namespace HeuristicLab.Core.Views {
     
    5253        }
    5354        catch (Exception ex) {
    54           Auxiliary.ShowErrorMessageBox(ex);
     55          ErrorHandling.ShowErrorDialog(this, ex);
    5556        }
    5657      }
  • trunk/sources/HeuristicLab.Core.Views/3.3/OperatorSetView.cs

    r3588 r3758  
    2424using HeuristicLab.Collections;
    2525using HeuristicLab.MainForm;
     26using HeuristicLab.PluginInfrastructure;
    2627
    2728namespace HeuristicLab.Core.Views {
     
    5253        }
    5354        catch (Exception ex) {
    54           Auxiliary.ShowErrorMessageBox(ex);
     55          ErrorHandling.ShowErrorDialog(this, ex);
    5556        }
    5657      }
  • trunk/sources/HeuristicLab.Core.Views/3.3/VariableView.cs

    r3694 r3758  
    2424using HeuristicLab.Common;
    2525using HeuristicLab.MainForm;
     26using HeuristicLab.PluginInfrastructure;
    2627
    2728namespace HeuristicLab.Core.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.