From: Tay R. C. <rc...@us...> - 2005-07-13 09:52:02
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18846/actionstep/org/actionstep Modified Files: NSWindow.as Log Message: added - release() for cleanup Index: NSWindow.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSWindow.as,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** NSWindow.as 7 Jul 2005 05:14:42 -0000 1.18 --- NSWindow.as 13 Jul 2005 09:51:48 -0000 1.19 *************** *** 542,545 **** --- 542,554 ---- return m_title; } + + public function release():Boolean { + var x = m_rootView.release(); + var y = m_contentView.release(); + + if(x==y==true) return true; + + return false; + } // Field editor |