Browse Source

fixed histogram

Nicolas Cannasse 15 years ago
parent
commit
8769be3f1e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/flash9/display/BitmapData.hx

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

@@ -38,7 +38,7 @@ extern class BitmapData implements IBitmapDrawable {
 	#if flash10
 	function setVector( rect : flash.geom.Rectangle, inputVector : flash.Vector<UInt> ) : Void;
 	function getVector( rect : flash.geom.Rectangle ) : flash.Vector<UInt>;
-	function histogram( ?hRect : flash.geom.Rectangle ) : flash.Vector<flash.Vector<Int>>;
+	function histogram( ?hRect : flash.geom.Rectangle ) : flash.Vector<flash.Vector<Float>>;
 	#end
 
 }