From: Tay R. C. <rc...@us...> - 2005-07-27 09:27:54
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25861/actionstep/org/actionstep Modified Files: ASAlertPanel.as Log Message: changed some static function names Index: ASAlertPanel.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/ASAlertPanel.as,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** ASAlertPanel.as 27 Jul 2005 09:15:32 -0000 1.21 --- ASAlertPanel.as 27 Jul 2005 09:27:45 -0000 1.22 *************** *** 370,374 **** } ! public static function NSGetAlertPanel( title:String, msg:String, --- 370,374 ---- } ! public static function NSGetAlert( title:String, msg:String, *************** *** 384,388 **** } ! public static function NSRunAlertPanel( title:String, message:String, --- 384,388 ---- } ! public static function NSRunAlert( title:String, message:String, *************** *** 401,410 **** panel.runModal(call, sel); ! NSReleaseAlertPanel(panel); } //NSRunLocalizedAlertPanel ! public static function NSGetCriticalAlertPanel( title:String, message:String, --- 401,410 ---- panel.runModal(call, sel); ! NSRelease(panel); } //NSRunLocalizedAlertPanel ! public static function NSGetCriticalAlert( title:String, message:String, *************** *** 417,421 **** } ! public static function NSRunCriticalAlertPanel( title:String, message:String, --- 417,421 ---- } ! public static function NSRunCriticalAlert( title:String, message:String, *************** *** 430,437 **** panel.runModal(call, sel); ! NSReleaseAlertPanel(panel); } ! public static function NSGetInformationalAlertPanel( title:String, message:String, --- 430,437 ---- panel.runModal(call, sel); ! NSRelease(panel); } ! public static function NSGetInformationalAlert( title:String, message:String, *************** *** 444,448 **** } ! public static function NSRunInformationalAlertPanel( title:String, message:String, --- 444,448 ---- } ! public static function NSRunInformationalAlert( title:String, message:String, *************** *** 457,464 **** panel.runModal(call, sel); ! NSReleaseAlertPanel(panel); } ! public static function NSReleaseAlertPanel(panel:ASAlertPanel):Void { if ((panel != m_standardAlertPanel) && (panel != m_informationalAlertPanel) --- 457,464 ---- panel.runModal(call, sel); ! NSRelease(panel); } ! public static function NSRelease(panel:ASAlertPanel):Void { if ((panel != m_standardAlertPanel) && (panel != m_informationalAlertPanel) |