Changeset 3038 for trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Diagram elements/Shapes
- Timestamp:
- 03/15/10 14:53:49 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Diagram elements/Shapes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Diagram elements/Shapes/ClassShape.cs
r2768 r3038 86 86 /// the list of items when set to list-type 87 87 /// </summary> 88 private C lassShapeItemCollection mList = new ClassShapeItemCollection();88 private CollectionBase<ClassShapeItem> mList = new CollectionBase<ClassShapeItem>(); 89 89 /// <summary> 90 90 /// the <see cref="LabelMaterial"/> to display the free text … … 226 226 /// Gets the list of items displayed in the body 227 227 /// </summary> 228 public C lassShapeItemCollectionList228 public CollectionBase<ClassShapeItem> List 229 229 { 230 230 get -
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Diagram elements/Shapes/FileShape.cs
r2768 r3038 281 281 public IntPtr hIcon; 282 282 public IntPtr iIcon; 283 public uint dwAttributes;283 public int dwAttributes; 284 284 [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)] 285 285 public string szDisplayName; -
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Diagram elements/Shapes/ShapeFactory.cs
r2768 r3038 57 57 return null; 58 58 } 59 60 return null;61 59 } 62 60 -
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Diagram elements/Shapes/SimpleEllipse.cs
r2768 r3038 23 23 /// the connectors 24 24 /// </summary> 25 25 //Connector cBottom, cLeft, cRight, cTop; 26 26 #endregion 27 27 -
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Diagram elements/Shapes/SimpleRectangle.cs
r2768 r3038 31 31 /// </summary> 32 32 // ------------------------------------------------------------------ 33 Connector cBottom;33 //Connector cBottom; 34 34 35 35 // ------------------------------------------------------------------ … … 38 38 /// </summary> 39 39 // ------------------------------------------------------------------ 40 Connector cLeft;40 //Connector cLeft; 41 41 42 42 // ------------------------------------------------------------------ … … 45 45 /// </summary> 46 46 // ------------------------------------------------------------------ 47 Connector cRight;47 //Connector cRight; 48 48 49 49 // ------------------------------------------------------------------ … … 52 52 /// </summary> 53 53 // ------------------------------------------------------------------ 54 Connector cTop;54 //Connector cTop; 55 55 56 56 #endregion
Note: See TracChangeset
for help on using the changeset viewer.