Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/11 17:14:43 (12 years ago)
Author:
ascheibe
Message:

#1215 adapted to static item image change and fixed a compiler warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/TypeValue.cs

    r5313 r7242  
    11using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
     2using System.Drawing;
     3using HeuristicLab.Common;
    54using HeuristicLab.Core;
    6 using HeuristicLab.Data;
    7 using System.Drawing;
    85using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    9 using HeuristicLab.Common;
    106
    117namespace HeuristicLab.Problems.MetaOptimization {
     
    139  [StorableClass]
    1410  public class TypeValue : Item {
    15     public override Image ItemImage {
     11    public static new Image StaticItemImage {
    1612      get { return HeuristicLab.Common.Resources.VSImageLibrary.Field; }
    1713    }
     
    3632    }
    3733
    38     public TypeValue() : base() {
     34    public TypeValue()
     35      : base() {
    3936      this.readOnly = false;
    4037    }
    41     public TypeValue(Type value) : base() {
     38    public TypeValue(Type value)
     39      : base() {
    4240      this.Value = value;
    4341      this.readOnly = false;
Note: See TracChangeset for help on using the changeset viewer.