Nicolas Cannasse 14 years ago
parent
commit
c7b3769d96
2 changed files with 4 additions and 4 deletions
  1. 3 3
      doc/extract.patch
  2. 1 1
      std/flash9/display/GraphicsStroke.hx

+ 3 - 3
doc/extract.patch

@@ -121,9 +121,9 @@ flash.display.GraphicsPath.$winding : GraphicsPathWinding;
 flash.display.GraphicsStroke.scaleMode : LineScaleMode;
 flash.display.GraphicsStroke.caps : CapsStyle;
 flash.display.GraphicsStroke.joints : JointStyle;
-flash.display.GraphicsStroke.$_scaleMode : LineScaleMode;
-flash.display.GraphicsStroke.$_caps : CapsStyle;
-flash.display.GraphicsStroke.$_joints : JointStyle;
+flash.display.GraphicsStroke.$scaleMode : LineScaleMode;
+flash.display.GraphicsStroke.$caps : CapsStyle;
+flash.display.GraphicsStroke.$joints : JointStyle;
 
 flash.display.GraphicsTrianglePath.culling : TriangleCulling;
 flash.display.GraphicsTrianglePath.$culling : TriangleCulling;

+ 1 - 1
std/flash9/display/GraphicsStroke.hx

@@ -8,5 +8,5 @@ package flash.display;
 	var pixelHinting : Bool;
 	var scaleMode : LineScaleMode;
 	var thickness : Float;
-	function new(thickness : Float = 0./*NaN*/, pixelHinting : Bool = false, ?scaleMode : String, ?caps : String, ?joints : String, miterLimit : Float = 3, ?fill : IGraphicsFill) : Void;
+	function new(thickness : Float = 0./*NaN*/, pixelHinting : Bool = false, ?scaleMode : LineScaleMode, ?caps : CapsStyle, ?joints : JointStyle, miterLimit : Float = 3, ?fill : IGraphicsFill) : Void;
 }