From: Scott H. <sco...@us...> - 2005-05-16 22:32:59
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8208/src/org/actionstep Modified Files: ASDrawer.as ASDrawerProtocol.as Log Message: bug fixes Index: ASDrawerProtocol.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/ASDrawerProtocol.as,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ASDrawerProtocol.as 16 May 2005 22:02:11 -0000 1.1 --- ASDrawerProtocol.as 16 May 2005 22:31:41 -0000 1.2 *************** *** 29,32 **** --- 29,37 ---- */ + import org.actionstep.NSSize; + import org.actionstep.NSPoint; + import org.actionstep.NSRect; + import org.actionstep.NSColor; + import org.actionstep.NSView; /** Index: ASDrawer.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/ASDrawer.as,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ASDrawer.as 16 May 2005 22:16:08 -0000 1.3 --- ASDrawer.as 16 May 2005 22:31:41 -0000 1.4 *************** *** 29,33 **** */ - import org.actionstep.ASDefaultDrawer; import org.actionstep.ASDrawerProtocol; import org.actionstep.NSRect; --- 29,32 ---- *************** *** 97,101 **** * Gets / sets the current ASDrawer. */ ! public static function current():ASDrawer { if (g_current == undefined) --- 96,100 ---- * Gets / sets the current ASDrawer. */ ! public static function current():ASDrawerProtocol { if (g_current == undefined) *************** *** 106,110 **** return g_current; } ! public static function setCurrent(value:ASDrawer) { g_current = value; --- 105,109 ---- return g_current; } ! public static function setCurrent(value:ASDrawerProtocol) { g_current = value; |