- Timestamp:
- 12/20/11 11:45:18 (13 years ago)
- Location:
- branches/HeuristicLab.TimeSeries
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.TimeSeries
-
branches/HeuristicLab.TimeSeries/HeuristicLab.Algorithms.Benchmarks/3.3/Benchmark.cs
r7015 r7213 189 189 } 190 190 191 public static Image StaticItemImage { 192 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; } 193 } 191 194 public Image ItemImage { 192 195 get { … … 195 198 else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePaused; 196 199 else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped; 197 else return HeuristicLab.Common.Resources.VSImageLibrary.Event;200 else return ItemAttribute.GetImage(this.GetType()); 198 201 } 199 202 } -
branches/HeuristicLab.TimeSeries/HeuristicLab.Algorithms.Benchmarks/3.3/DhrystoneBenchmark.cs
r7006 r7213 64 64 } 65 65 66 public static Image StaticItemImage { 67 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; } 68 } 66 69 public Image ItemImage { 67 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; }70 get { return ItemAttribute.GetImage(this.GetType()); } 68 71 } 69 72 -
branches/HeuristicLab.TimeSeries/HeuristicLab.Algorithms.Benchmarks/3.3/LinpackBenchmark.cs
r7007 r7213 64 64 } 65 65 66 public static Image StaticItemImage { 67 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; } 68 } 66 69 public Image ItemImage { 67 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; }70 get { return ItemAttribute.GetImage(this.GetType()); } 68 71 } 69 72 -
branches/HeuristicLab.TimeSeries/HeuristicLab.Algorithms.Benchmarks/3.3/WhetstoneBenchmark.cs
r7006 r7213 64 64 } 65 65 66 public static Image StaticItemImage { 67 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; } 68 } 66 69 public Image ItemImage { 67 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; }70 get { return ItemAttribute.GetImage(this.GetType()); } 68 71 } 69 72
Note: See TracChangeset
for help on using the changeset viewer.