- Timestamp:
- 08/17/10 13:00:24 (21 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
ssme/trunk/flex/Common/src/com/kh/ssme/components/GridCanvas.as
r4042 r4044 22 22 23 23 package com.kh.ssme.components { 24 import flash.display.CapsStyle; 24 import com.kh.ssme.util.Logger; 25 26 import flash.display.CapsStyle; 25 27 import flash.display.LineScaleMode; 26 28 … … 193 195 194 196 // inner border 195 var inBorderThickness:int, xTempPos: int, yTempPos:int;197 var inBorderThickness:int, xTempPos:Number, yTempPos:Number; 196 198 columnsPosition = []; 197 199 rowsPosition = []; … … 237 239 graphics.moveTo(outBorderThickness + leftHorizontalMargin, yTempPos); 238 240 graphics.lineTo(unscaledWidth - outBorderThickness - rightHorizontalMargin, yTempPos); 239 tempRowsPos.push( yTempPos ); 241 tempRowsPos.push( yTempPos ); 240 242 } 241 243 // bottom border position
