Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/04/12 16:45:02 (12 years ago)
Author:
spimming
Message:

#1680:

  • merged changes from trunk into branch
Location:
branches/HeuristicLab.Hive.Azure
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive.Azure

  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Operators.Views.GraphVisualization.Views/3.3/ShapeInfoExtensions.cs

    r6036 r7270  
    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.Subtitle = shapeInfo.TypeName;
    5253      shape.Color = shapeInfo.Color;
    5354      shape.LineColor = shapeInfo.LineColor;
     
    6566    public static void UpdateShape(IOperatorShapeInfo operatorShapeInfo, OperatorShape operatorShape) {
    6667      operatorShape.Title = operatorShapeInfo.Title;
     68      operatorShape.Subtitle = operatorShapeInfo.TypeName;
    6769      operatorShape.Color = operatorShapeInfo.Color;
    6870      operatorShape.LineColor = operatorShapeInfo.LineColor;
     
    105107    public static void UpdateShapeInfo(IOperatorShapeInfo operatorShapeInfo, OperatorShape operatorShape) {
    106108      operatorShapeInfo.Title = operatorShape.Title;
     109      operatorShapeInfo.TypeName = operatorShape.Subtitle;
    107110      operatorShapeInfo.Color = operatorShape.Color;
    108111      operatorShapeInfo.LineColor = operatorShape.LineColor;
Note: See TracChangeset for help on using the changeset viewer.