Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/11 09:13:15 (14 years ago)
Author:
abeham
Message:

#1337

  • Renamed VS2008ImageLibrary resource to VSImageLibrary
  • Added Filter icon to the VS2010ImageLibrary folder and the resource manager
Location:
trunk/sources/HeuristicLab.Optimization/3.3
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/Algorithm.cs

    r5203 r5287  
    3838    public override Image ItemImage {
    3939      get {
    40         if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePrepared;
    41         else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStarted;
    42         else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePaused;
    43         else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStopped;
    44         else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Event;
     40        if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared;
     41        else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStarted;
     42        else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePaused;
     43        else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped;
     44        else return HeuristicLab.Common.Resources.VSImageLibrary.Event;
    4545      }
    4646    }
  • trunk/sources/HeuristicLab.Optimization/3.3/BatchRun.cs

    r4722 r5287  
    4141    public override Image ItemImage {
    4242      get {
    43         if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePrepared;
    44         else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStarted;
    45         else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePaused;
    46         else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStopped;
    47         else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Event;
     43        if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared;
     44        else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStarted;
     45        else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePaused;
     46        else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped;
     47        else return HeuristicLab.Common.Resources.VSImageLibrary.Event;
    4848      }
    4949    }
  • trunk/sources/HeuristicLab.Optimization/3.3/Experiment.cs

    r4722 r5287  
    4040    public override Image ItemImage {
    4141      get {
    42         if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePrepared;
    43         else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStarted;
    44         else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutablePaused;
    45         else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VS2008ImageLibrary.ExecutableStopped;
    46         else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Event;
     42        if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared;
     43        else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStarted;
     44        else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePaused;
     45        else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped;
     46        else return HeuristicLab.Common.Resources.VSImageLibrary.Event;
    4747      }
    4848    }
  • trunk/sources/HeuristicLab.Optimization/3.3/Problem.cs

    r4722 r5287  
    3939
    4040    public override Image ItemImage {
    41       get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Type; }
     41      get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; }
    4242    }
    4343
  • trunk/sources/HeuristicLab.Optimization/3.3/UserDefinedProblem.cs

    r5193 r5287  
    2424using System.Drawing;
    2525using System.Linq;
     26using System.Threading;
    2627using HeuristicLab.Collections;
    2728using HeuristicLab.Common;
     
    3031using HeuristicLab.Parameters;
    3132using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    32 using System.Threading;
    3333
    3434namespace HeuristicLab.Optimization {
     
    4343
    4444    public override Image ItemImage {
    45       get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Type; }
     45      get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; }
    4646    }
    4747    public new ParameterCollection Parameters {
     
    262262
    263263      public override Image ItemImage {
    264         get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Method; }
     264        get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; }
    265265      }
    266266    }
Note: See TracChangeset for help on using the changeset viewer.