- Timestamp:
- 05/04/10 16:37:10 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/PluginEditor.cs
r3600 r3608 42 42 public PluginManager PluginManager { 43 43 get { return pluginManager; } 44 set { 45 // if (value == null) throw new ArgumentNullException(); 46 pluginManager = value; 47 } 44 set { pluginManager = value; } 48 45 } 49 46 50 47 public PluginEditor() { 51 48 InitializeComponent(); 52 // Caption = "Upload Plugins"; 53 49 pluginImageList.Images.Add(HeuristicLab.PluginInfrastructure.Resources.Resources.plugin_16); 54 50 localAndServerPlugins = new Dictionary<IPluginDescription, IPluginDescription>(); 55 51 … … 262 258 } 263 259 item.Tag = plugin; 260 item.ImageIndex = 0; 264 261 item.Checked = false; 265 262 return item;
Note: See TracChangeset
for help on using the changeset viewer.