Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/25/12 10:15:59 (12 years ago)
Author:
ascheibe
Message:

#1882 fixed collecting runs in the OptimizerHiveTaskView

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/OptimizerHiveTaskView.cs

    r8186 r8692  
    2525using HeuristicLab.MainForm;
    2626using HeuristicLab.MainForm.WindowsForms;
     27using HeuristicLab.Optimization;
    2728using HeuristicLab.PluginInfrastructure;
    2829
     
    5354    protected override void Job_ItemChanged(object sender, EventArgs e) {
    5455      if (Content != null && Content.Task != null && Content.ItemTask.Item != null) {
    55         runCollectionViewHost.Content = Content.ItemTask.Item.Runs;
     56        RunCollection runs = new RunCollection();
     57        TaskUtil.GetAllRunsFromHiveTask(runs, Content);
     58        runCollectionViewHost.Content = runs;
    5659      } else {
    5760        runCollectionViewHost.Content = null;
Note: See TracChangeset for help on using the changeset viewer.