Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/15 17:08:43 (9 years ago)
Author:
gkronber
Message:

#2522: improvements to AboutDialog and PluginInformationDialog

Location:
branches/RefactorPluginInfrastructure-2522/HeuristicLab.Optimizer/3.3/MenuItems
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/RefactorPluginInfrastructure-2522/HeuristicLab.Optimizer/3.3/MenuItems/AboutMenuItem.cs

    r13338 r13369  
    2323using System.Windows.Forms;
    2424using HeuristicLab.MainForm;
     25using HeuristicLab.PluginInfrastructure;
    2526using HeuristicLab.PluginInfrastructure.UI;
    2627
     
    4142    public override void Execute() {
    4243      if (aboutDialog == null)
    43         aboutDialog = new AboutDialog();
     44        aboutDialog = new AboutDialog(ApplicationManager.Manager.Plugins, GetType().Assembly); // show information about optimizer
    4445      aboutDialog.ShowDialog((IWin32Window)MainFormManager.MainForm);
    4546    }
Note: See TracChangeset for help on using the changeset viewer.