Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5294


Ignore:
Timestamp:
01/14/11 00:43:03 (13 years ago)
Author:
cneumuel
Message:

#1260

  • changed VS2008ImageLibrary to VSImageLibrary
Location:
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive 3.3.sln

    r5268 r5294  
    2929    ConfigMerger.exe = ConfigMerger.exe
    3030    HeuristicLab 3.3.vsmdi = HeuristicLab 3.3.vsmdi
    31     HeuristicLab.Hive 3.33.vsmdi = HeuristicLab.Hive 3.33.vsmdi
     31    HeuristicLab.Hive 3.34.vsmdi = HeuristicLab.Hive 3.34.vsmdi
    3232    LocalTestRun.testrunconfig = LocalTestRun.testrunconfig
    3333    PreBuildEvent.cmd = PreBuildEvent.cmd
     
    108108Global
    109109  GlobalSection(TestCaseManagementSettings) = postSolution
    110     CategoryFile = HeuristicLab.Hive 3.33.vsmdi
     110    CategoryFile = HeuristicLab.Hive 3.34.vsmdi
    111111  EndGlobalSection
    112112  GlobalSection(SolutionConfigurationPlatforms) = preSolution
  • branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.ExperimentManager/3.3/HiveJob.cs

    r5181 r5294  
    4343      get {
    4444        if (jobDto.Id == Guid.Empty) { // not yet uploaded
    45           return HeuristicLab.Common.Resources.VS2008ImageLibrary.Event;
     45          return HeuristicLab.Common.Resources.VSImageLibrary.Event;
    4646        } else {
    47           if (jobDto.State == JobState.Offline) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePrepared;
    48           else if (jobDto.State == JobState.WaitForChildJobs) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePrepared;
    49           else if (jobDto.State == JobState.Calculating) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStarted;
    50           else if (jobDto.State == JobState.Aborted) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStopped;
    51           else if (jobDto.State == JobState.Failed) return HeuristicLab.Common.Resources.VS2008ImageLibrary.Error;
    52           else if (jobDto.State == JobState.Finished) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStopped;
    53           else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Event;
     47          if (jobDto.State == JobState.Offline) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared;
     48          else if (jobDto.State == JobState.WaitForChildJobs) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared;
     49          else if (jobDto.State == JobState.Calculating) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStarted;
     50          else if (jobDto.State == JobState.Aborted) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped;
     51          else if (jobDto.State == JobState.Failed) return HeuristicLab.Common.Resources.VSImageLibrary.Error;
     52          else if (jobDto.State == JobState.Finished) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped;
     53          else return HeuristicLab.Common.Resources.VSImageLibrary.Event;
    5454        }
    5555      }
  • branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.HiveEngine/3.3/OperationJob.cs

    r5136 r5294  
    118118
    119119    public override Image ItemImage {
    120       get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Operator; }
     120      get { return HeuristicLab.Common.Resources.VSImageLibrary.Operator; }
    121121    }
    122122
Note: See TracChangeset for help on using the changeset viewer.