- Timestamp:
- 07/22/10 00:44:01 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/AboutDialog.cs
r3761 r4068 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.ComponentModel; 25 using System.Data; 26 using System.Drawing; 24 using System.Diagnostics; 27 25 using System.Linq; 28 using System. Text;26 using System.Reflection; 29 27 using System.Windows.Forms; 30 using System.Reflection;31 using System.Diagnostics;32 28 using HeuristicLab.PluginInfrastructure.Advanced; 33 29 … … 57 53 /// </summary> 58 54 /// <param name="plugins">Enumerable of plugins that should be listed.</param> 59 public AboutDialog(IEnumerable<IPluginDescription> plugins) : this() { 55 public AboutDialog(IEnumerable<IPluginDescription> plugins) 56 : this() { 60 57 UpdatePluginList(plugins); 61 58 } … … 101 98 102 99 private void pluginListView_ItemActivate(object sender, EventArgs e) { 103 if (pluginListView.SelectedItems.Count > 0) {100 if (pluginListView.SelectedItems.Count > 0) { 104 101 PluginView view = new PluginView((IPluginDescription)pluginListView.SelectedItems[0].Tag); 105 102 view.Show(this); -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/SplashScreen.Designer.cs
r3813 r4068 20 20 #endregion 21 21 22 using HeuristicLab.PluginInfrastructure;23 22 namespace HeuristicLab.PluginInfrastructure.Starter { 24 23 partial class SplashScreen { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/SplashScreen.cs
r3777 r4068 21 21 22 22 using System; 23 using System. Collections.Generic;24 using System. Data;25 using System. Drawing;23 using System.Diagnostics; 24 using System.Linq; 25 using System.Reflection; 26 26 using System.Windows.Forms; 27 using System.Reflection;28 using System.Linq;29 using HeuristicLab.PluginInfrastructure;30 27 using HeuristicLab.PluginInfrastructure.Manager; 31 using System.Diagnostics;32 28 33 29 namespace HeuristicLab.PluginInfrastructure.Starter { -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Starter/StarterForm.cs
r3758 r4068 21 21 22 22 using System; 23 using System.Collections.Generic; 24 using System.Diagnostics; 25 using System.IO; 23 26 using System.Linq; 24 using System.Collections.Generic; 25 using System.ComponentModel; 26 using System.Data; 27 using System.Drawing; 28 using System.Text; 27 using System.Threading; 29 28 using System.Windows.Forms; 30 using System.Diagnostics; 31 using HeuristicLab.PluginInfrastructure; 32 using System.Threading; 29 using HeuristicLab.PluginInfrastructure.Advanced; 33 30 using HeuristicLab.PluginInfrastructure.Manager; 34 using System.IO;35 using HeuristicLab.PluginInfrastructure.Advanced;36 31 37 32 namespace HeuristicLab.PluginInfrastructure.Starter {
Note: See TracChangeset
for help on using the changeset viewer.