Update of /cvsroot/actionstep/actionstep/src/org/actionstep
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24079/actionstep/org/actionstep
Modified Files:
ASAlertPanel.as
Log Message:
checks if title is null in - getSomePanel
Index: ASAlertPanel.as
===================================================================
RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/ASAlertPanel.as,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** ASAlertPanel.as 26 Jul 2005 11:40:49 -0000 1.20
--- ASAlertPanel.as 27 Jul 2005 09:15:32 -0000 1.21
***************
*** 37,41 ****
import org.actionstep.NSImage;
import org.actionstep.NSSize;
! import org.actionstep.NSPoint;
import org.actionstep.ASDraw;
--- 37,41 ----
import org.actionstep.NSImage;
import org.actionstep.NSSize;
! import org.actionstep.NSPoint;
import org.actionstep.ASDraw;
***************
*** 353,357 ****
instance = panel;
}
! if (title == "") {
title = defTitle;
}
--- 353,357 ----
instance = panel;
}
! if (title == "" || title ==null) {
title = defTitle;
}
|