Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/11 09:13:15 (14 years ago)
Author:
abeham
Message:

#1337

  • Renamed VS2008ImageLibrary resource to VSImageLibrary
  • Added Filter icon to the VS2010ImageLibrary folder and the resource manager
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/TourEncoding.cs

    r4856 r5287  
    2222using System.Collections.Generic;
    2323using System.Drawing;
     24using System.Text;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Core;
    2627using HeuristicLab.Data;
    2728using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    28 using System.Text;
    2929
    3030namespace HeuristicLab.Problems.VehicleRouting.Encodings.General {
     
    3333  public abstract class TourEncoding : Item, IVRPEncoding {
    3434    public override Image ItemImage {
    35       get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Class; }
     35      get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; }
    3636    }
    3737
     
    116116      }
    117117
    118       return sb.ToString(); 
     118      return sb.ToString();
    119119    }
    120120  }
Note: See TracChangeset for help on using the changeset viewer.