From: Richard K. <ric...@us...> - 2005-05-27 20:51:54
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18707 Modified Files: NSRect.as Log Message: explicit this. Index: NSRect.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSRect.as,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** NSRect.as 27 May 2005 01:33:06 -0000 1.8 --- NSRect.as 27 May 2005 20:51:44 -0000 1.9 *************** *** 45,50 **** public function NSRect(x:Number, y:Number, width:Number, height:Number) { ! origin = new NSPoint(x, y); ! size = new NSSize(width, height); } --- 45,50 ---- public function NSRect(x:Number, y:Number, width:Number, height:Number) { ! this.origin = new NSPoint(x, y); ! this.size = new NSSize(width, height); } |