Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/15/11 14:54:43 (13 years ago)
Author:
abeham
Message:

#1465

  • updated branch with changes from trunk
  • fixed some bugs
  • introduced secondary x-axis option
Location:
branches/histogram
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram

  • branches/histogram/HeuristicLab.PluginInfrastructure/3.3/Main.cs

    r5445 r6011  
    3434    /// <param name="args">Command line arguments</param>
    3535    public static void Run(string[] args) {
    36       try {
     36      if (!FrameworkVersionErrorDialog.NET4FullProfileInstalled) {
    3737        Application.EnableVisualStyles();
    3838        Application.SetCompatibleTextRenderingDefault(false);
    39         Application.Run(new StarterForm());
    40       }
    41       catch (Exception ex) {
    42         ErrorHandling.ShowErrorDialog(ex);
     39        Application.Run(new FrameworkVersionErrorDialog());
     40      } else {
     41        try {
     42          Application.EnableVisualStyles();
     43          Application.SetCompatibleTextRenderingDefault(false);
     44          Application.Run(new StarterForm());
     45        }
     46        catch (Exception ex) {
     47          ErrorHandling.ShowErrorDialog(ex);
     48        }
    4349      }
    4450    }
Note: See TracChangeset for help on using the changeset viewer.