yyn0210 / alivepdf

Automatically exported from code.google.com/p/alivepdf
0 stars 0 forks source link

BUG in setGridPositionOnNextPages (PDF.as) #326

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Ok I think there is a bug in setGridPositionOnNextPages function in PDF.as 
(line 4040) (current revision 277)

public function 
setGridPositionOnNextPages(xvalue:Number=10,yvalue:Number=10):void
{
    nextPageX = yvalue;
    nextPageY = xvalue;
}

the correct code should be:

public function 
setGridPositionOnNextPages(xvalue:Number=10,yvalue:Number=10):void
{
    nextPageX = xvalue;
    nextPageY = yvalue;
}

Do you see the difference?

Original issue reported on code.google.com by marcus.f...@googlemail.com on 1 Aug 2011 at 6:28