Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/12/10 04:53:48 (14 years ago)
Author:
swagner
Message:

Implemented reviewers' comments (#893).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/3.3/Comparison.cs

    r3160 r3306  
    2121
    2222using System;
     23using System.Drawing;
    2324using HeuristicLab.Core;
    2425using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    2829  [StorableClass]
    2930  public class Comparison : ValueTypeValue<ComparisonType>, IComparable {
     31    public override Image ItemImage {
     32      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Enum; }
     33    }
     34
    3035    public Comparison() : base() { }
    3136    public Comparison(ComparisonType value) : base(value) { }
Note: See TracChangeset for help on using the changeset viewer.