Changeset 3306 for trunk/sources/HeuristicLab.Operators
- Timestamp:
- 04/12/10 04:53:48 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Operators/3.3/AlgorithmOperator.cs ¶
r3017 r3306 32 32 public abstract class AlgorithmOperator : SingleSuccessorOperator { 33 33 public override Image ItemImage { 34 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Module; } 34 get { 35 if (Breakpoint) return HeuristicLab.Common.Resources.VS2008ImageLibrary.BreakpointActive; 36 else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Module; 37 } 35 38 } 36 39 [Storable] -
TabularUnified trunk/sources/HeuristicLab.Operators/3.3/Operator.cs ¶
r3034 r3306 33 33 public abstract class Operator : ParameterizedNamedItem, IOperator { 34 34 public override Image ItemImage { 35 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Method; } 35 get { 36 if (Breakpoint) return HeuristicLab.Common.Resources.VS2008ImageLibrary.BreakpointActive; 37 else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Method; 38 } 36 39 } 37 40 public override bool CanChangeDescription { … … 76 79 breakpoint = value; 77 80 OnBreakpointChanged(); 81 OnItemImageChanged(); 78 82 } 79 83 }
Note: See TracChangeset
for help on using the changeset viewer.