From: Richard K. <ric...@us...> - 2005-07-15 19:58:15
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20297 Modified Files: NSWindow.as Log Message: release on NSWindow should actually be close Index: NSWindow.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSWindow.as,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** NSWindow.as 14 Jul 2005 21:53:42 -0000 1.21 --- NSWindow.as 15 Jul 2005 19:57:57 -0000 1.22 *************** *** 534,538 **** public function close() { ! TRACE("$close window..."); } --- 534,541 ---- public function close() { ! release(); ! m_notificationCenter.postNotificationWithNameObject(NSWindowWillCloseNotification, this); ! // m_nsapp.removeWindowsItem(); ??? ! // order out ??? } *************** *** 546,550 **** } ! public function release():Boolean { m_rootView.removeFromSuperview(); return true; --- 549,553 ---- } ! private function release():Boolean { m_rootView.removeFromSuperview(); return true; |