Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting.Views/3.4/SingleDepotVRPView.cs

    r14185 r14927  
    6464        using (Graphics graphics = Graphics.FromImage(bitmap)) {
    6565          if (Solution != null) {
    66              List<Tour> tours = Solution.GetTours();
    67              List<Pen> pens = GetColors(tours.Count);
     66            List<Tour> tours = Solution.GetTours();
     67            List<Pen> pens = GetColors(tours.Count);
    6868
    6969            int currentTour = 0;
     
    104104
    105105            for (int i = 0; i < pens.Count; i++)
    106                pens[i].Dispose();
     106              pens[i].Dispose();
    107107          } else {
    108108            Point locationPoint;
Note: See TracChangeset for help on using the changeset viewer.