Free cookie consent management tool by TermsFeed Policy Generator

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

#2522: improvements to AboutDialog and PluginInformationDialog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure.UI/StarterForm.cs

    r13360 r13369  
    2424using System.IO;
    2525using System.Linq;
     26using System.Reflection;
    2627using System.Threading;
    2728using System.Threading.Tasks;
     
    130131    private void aboutButton_Click(object sender, EventArgs e) {
    131132      List<IPluginDescription> plugins = new List<IPluginDescription>(pluginManager.Plugins.OfType<IPluginDescription>());
    132       using (var dialog = new AboutDialog(plugins)) {
     133      using (var dialog = new AboutDialog(plugins, Assembly.GetEntryAssembly())) {
    133134        dialog.ShowDialog();
    134135      }
Note: See TracChangeset for help on using the changeset viewer.