Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/03/12 11:22:21 (12 years ago)
Author:
gkronber
Message:

#1081: merged r7214:7266 from trunk into time series branch.

Location:
branches/HeuristicLab.TimeSeries
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.TimeSeries

  • branches/HeuristicLab.TimeSeries/HeuristicLab.Operators.Views.GraphVisualization.Views/3.3/ShapeInfoExtensions.cs

    r7213 r7268  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    5050      shape.Location = shapeInfo.Location;
    5151      shape.Title = shapeInfo.Title;
    52       shape.TypeName = shapeInfo.TypeName;
     52      shape.Subtitle = shapeInfo.TypeName;
    5353      shape.Color = shapeInfo.Color;
    5454      shape.LineColor = shapeInfo.LineColor;
     
    6666    public static void UpdateShape(IOperatorShapeInfo operatorShapeInfo, OperatorShape operatorShape) {
    6767      operatorShape.Title = operatorShapeInfo.Title;
    68       operatorShape.TypeName = operatorShapeInfo.TypeName;
     68      operatorShape.Subtitle = operatorShapeInfo.TypeName;
    6969      operatorShape.Color = operatorShapeInfo.Color;
    7070      operatorShape.LineColor = operatorShapeInfo.LineColor;
     
    107107    public static void UpdateShapeInfo(IOperatorShapeInfo operatorShapeInfo, OperatorShape operatorShape) {
    108108      operatorShapeInfo.Title = operatorShape.Title;
    109       operatorShapeInfo.TypeName = operatorShape.TypeName;
     109      operatorShapeInfo.TypeName = operatorShape.Subtitle;
    110110      operatorShapeInfo.Color = operatorShape.Color;
    111111      operatorShapeInfo.LineColor = operatorShape.LineColor;
Note: See TracChangeset for help on using the changeset viewer.