Changeset 4529 for trunk/sources
- Timestamp:
- 09/28/10 14:25:49 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/AvailablePluginsView.cs
r4527 r4529 176 176 var pluginsToInstall = selectedProduct.Plugins.Except(pluginsToUpdate); 177 177 178 updateOrInstallInfo.PluginsToInstall = (IEnumerable<IPluginDescription>)pluginsToInstall.ToList(); 179 updateOrInstallInfo.PluginsToUpdate = (IEnumerable<IPluginDescription>)pluginsToUpdate.ToList(); 178 updateOrInstallInfo.PluginsToInstall = 179 pluginsToInstall 180 .Cast<IPluginDescription>() 181 .ToList(); 182 updateOrInstallInfo.PluginsToUpdate = 183 pluginsToUpdate 184 .Cast<IPluginDescription>() 185 .ToList(); 180 186 updateOrInstallPluginsBackgroundWorker.RunWorkerAsync(updateOrInstallInfo); 181 187 }
Note: See TracChangeset
for help on using the changeset viewer.