Changeset 5287 for trunk/sources/HeuristicLab.Operators
- Timestamp:
- 01/12/11 09:13:15 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/3.3/AlgorithmOperator.cs
r4722 r5287 34 34 public override Image ItemImage { 35 35 get { 36 if (Breakpoint) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.BreakpointActive;37 else return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Module;36 if (Breakpoint) return HeuristicLab.Common.Resources.VSImageLibrary.BreakpointActive; 37 else return HeuristicLab.Common.Resources.VSImageLibrary.Module; 38 38 } 39 39 } -
trunk/sources/HeuristicLab.Operators/3.3/Operator.cs
r5193 r5287 36 36 public override Image ItemImage { 37 37 get { 38 if (Breakpoint) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.BreakpointActive;39 else return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Method;38 if (Breakpoint) return HeuristicLab.Common.Resources.VSImageLibrary.BreakpointActive; 39 else return HeuristicLab.Common.Resources.VSImageLibrary.Method; 40 40 } 41 41 } … … 116 116 OnExecuted(); 117 117 return next; 118 } 119 finally { 118 } finally { 120 119 foreach (IParameter param in Parameters) 121 120 param.ExecutionContext = null;
Note: See TracChangeset
for help on using the changeset viewer.