Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/03/10 11:18:39 (14 years ago)
Author:
cneumuel
Message:

added HeuristicLab.Hive.Tracing (#1092)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment/3.3/JobItem.cs

    r4133 r4135  
    1818    public override Image ItemImage {
    1919      get {
    20         if (jobDto.State == State.Offline) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStopped;
     20        if (jobDto.State == State.Offline) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePrepared;
    2121        else if (jobDto.State == State.Idle) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStopped;
    2222        else if (jobDto.State == State.Calculating) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStarted;
    2323        else if (jobDto.State == State.Offline) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStopped;
     24        else if (jobDto.State == State.Abort) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStopped;
    2425        else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Event;
    2526      }
Note: See TracChangeset for help on using the changeset viewer.