Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/11 09:13:15 (13 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.Operators/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/AlgorithmOperator.cs

    r4722 r5287  
    3434    public override Image ItemImage {
    3535      get {
    36         if (Breakpoint) return HeuristicLab.Common.Resources.VS2008ImageLibrary.BreakpointActive;
    37         else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Module;
     36        if (Breakpoint) return HeuristicLab.Common.Resources.VSImageLibrary.BreakpointActive;
     37        else return HeuristicLab.Common.Resources.VSImageLibrary.Module;
    3838      }
    3939    }
  • trunk/sources/HeuristicLab.Operators/3.3/Operator.cs

    r5193 r5287  
    3636    public override Image ItemImage {
    3737      get {
    38         if (Breakpoint) return HeuristicLab.Common.Resources.VS2008ImageLibrary.BreakpointActive;
    39         else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Method;
     38        if (Breakpoint) return HeuristicLab.Common.Resources.VSImageLibrary.BreakpointActive;
     39        else return HeuristicLab.Common.Resources.VSImageLibrary.Method;
    4040      }
    4141    }
     
    116116        OnExecuted();
    117117        return next;
    118       }
    119       finally {
     118      } finally {
    120119        foreach (IParameter param in Parameters)
    121120          param.ExecutionContext = null;
Note: See TracChangeset for help on using the changeset viewer.