- Timestamp:
- 12/19/11 09:41:39 (13 years ago)
- Location:
- branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/FDC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/FDC/HeatMap.cs
r7128 r7202 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HeuristicLab.Common.Resources; 28 29 29 30 namespace HeuristicLab.Analysis.FitnessLandscape { … … 33 34 public class HeatMap : NamedItem { 34 35 35 public override Image ItemImage { 36 get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; } 37 } 36 public static new Image StaticItemImage { get { return VSImageLibrary.Image; } } 38 37 39 38 #region Persistence -
branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/FDC/ScatterPlot.cs
r7128 r7202 27 27 using HeuristicLab.Core; 28 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 using HeuristicLab.Common.Resources; 29 30 30 31 namespace HeuristicLab.Analysis.FitnessLandscape { … … 42 43 public class ScatterPlot : NamedItem { 43 44 44 public override Image ItemImage { 45 get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; } 46 } 45 public static new Image StaticItemImage { get { return VSImageLibrary.Image; } } 47 46 48 47 public event EventHandler<PointsEventArgs> PixelsChanged;
Note: See TracChangeset
for help on using the changeset viewer.