Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShape.cs

    r3422 r4068  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    26 using Netron.Diagramming.Core;
    2724using System.Drawing;
    2825using System.Drawing.Drawing2D;
     26using System.Linq;
    2927using HeuristicLab.Netron;
     28using Netron.Diagramming.Core;
    3029
    3130
     
    222221      SizeF titleSize = g.MeasureString(this.Title, ArtPalette.DefaultBoldFont, Rectangle.Width - 45);
    223222      if (titleSize.Height + 10 > Rectangle.Height) {
    224         headerHeight =  (int)titleSize.Height + 10;
     223        headerHeight = (int)titleSize.Height + 10;
    225224        this.UpdateLabels();
    226225      }
Note: See TracChangeset for help on using the changeset viewer.