Browse Source

minor fix

Nicolas Cannasse 17 years ago
parent
commit
73cabef832
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/flash9/display/GraphicsGradientFill.hx

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

@@ -9,5 +9,5 @@ extern class GraphicsGradientFill implements IGraphicsFill, implements IGraphics
 	var spreadMethod : SpreadMethod;
 	var interpolationMethod : InterpolationMethod;
 	var focalPointRatio : Float;
-	function new(type : GradientType, colors : Array<UInt>, alphas : Array<Float>, ratios : Array<Float>, ?matrix : flash.geom.Matrix, ?spreadMethod : SpreadMethod, ?interpolationMethod : InterpolationMethod, ?focalPointRatio : Float) : Void;
+	function new( ?type : GradientType, ?colors : Array<UInt>, ?alphas : Array<Float>, ?ratios : Array<Float>, ?matrix : flash.geom.Matrix, ?spreadMethod : SpreadMethod, ?interpolationMethod : InterpolationMethod, ?focalPointRatio : Float) : Void;
 }