From: Scott H. <sco...@us...> - 2005-05-17 02:30:57
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23193/src/org/actionstep Modified Files: NSMatrix.as Log Message: Added target and action methods Index: NSMatrix.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSMatrix.as,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** NSMatrix.as 17 May 2005 01:43:26 -0000 1.5 --- NSMatrix.as 17 May 2005 02:30:46 -0000 1.6 *************** *** 237,241 **** && m_numcols > 0) { ! //! this.selectCellAtRowColumn(0, 0); } } --- 237,241 ---- && m_numcols > 0) { ! this.selectCellAtRowColumn(0, 0); } } *************** *** 1349,1352 **** --- 1349,1355 ---- public function drawCellAtRowColumn(row:Number, column:Number):Void { + if (m_mcBounds == null) + return; + var cell:NSCell = cellAtRowColumn(row, column); *************** *** 2027,2032 **** (m_frame.size.width - (m_cellspacing.width * (m_numcols + 1))) / m_numcols, (m_frame.size.height - (m_cellspacing.height * (m_numrows + 1))) / m_numrows); - - TRACE(m_cellsize); } --- 2030,2033 ---- |