From: <doc...@us...> - 2008-03-31 20:38:10
|
Revision: 218 http://openpcl.svn.sourceforge.net/openpcl/?rev=218&view=rev Author: documentsystems Date: 2008-03-31 13:38:11 -0700 (Mon, 31 Mar 2008) Log Message: ----------- Change argument type from int to float in relativeXPosition method. Modified Paths: -------------- openpcl/src/com/openpcl/pclrenderimage/render/PriCursorPos.java Modified: openpcl/src/com/openpcl/pclrenderimage/render/PriCursorPos.java =================================================================== --- openpcl/src/com/openpcl/pclrenderimage/render/PriCursorPos.java 2008-03-31 20:35:46 UTC (rev 217) +++ openpcl/src/com/openpcl/pclrenderimage/render/PriCursorPos.java 2008-03-31 20:38:11 UTC (rev 218) @@ -115,7 +115,7 @@ } /** The relative X position command. Position the drawing point at + X */ - public void relativeXPosition(int xPos) { + public void relativeXPosition(float xPos) { mXpos += xPos; // both a positive or negative add is OK // Debug window info line // PriDebug.infoln(PriDebug.spacesForPclParseMsgs + "PriCursorPos x relative move of " + xPos + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |