Update of /cvsroot/actionstep/actionstep/src/org/actionstep
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26266/actionstep/org/actionstep
Modified Files:
ASAlertPanel.as
Log Message:
changed m_defTitle to static init
Index: ASAlertPanel.as
===================================================================
RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/ASAlertPanel.as,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** ASAlertPanel.as 26 Jul 2005 10:48:39 -0000 1.13
--- ASAlertPanel.as 26 Jul 2005 10:55:50 -0000 1.14
***************
*** 45,49 ****
private static var m_app:NSApplication
! private static var m_defTitle:String
private static var m_ico:NSImage;
--- 45,49 ----
private static var m_app:NSApplication
! private static var m_defTitle:String = "Alert"
private static var m_ico:NSImage;
***************
*** 115,119 ****
if(g_init==null) { //do it once only
m_app = NSApplication.sharedApplication();
- m_defTitle ="Alert";
WinPos = new NSPoint(100, 100);
WinSize = new NSSize(MsgWidth+m_ico.size.width+IconLeft+IconRight+BtnRight, 200);
--- 115,118 ----
|