checkin from browser rel4_1_7 release
authorClaus Gittinger <cg@exept.de>
Mon, 03 Feb 2003 12:20:09 +0100
changeset 2685 76de19bec54b
parent 2684 91ac286733ac
child 2686 ec869d3db366
checkin from browser
DialogBox.st
--- a/DialogBox.st	Sun Feb 02 15:55:28 2003 +0100
+++ b/DialogBox.st	Mon Feb 03 12:20:09 2003 +0100
@@ -2926,7 +2926,7 @@
         box := EnterBoxWithList title:aString.
         box list:listToSelectFrom.
     ].
-    box initialText:initial printString.
+    initial notNil ifTrue:[ box initialText:initial printString ].
     anInterval notNil ifTrue:[
         box selectFrom:anInterval start to:anInterval stop.
     ].
@@ -7701,7 +7701,7 @@
 !DialogBox class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/DialogBox.st,v 1.206 2002-12-11 12:01:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/DialogBox.st,v 1.207 2003-02-03 11:20:09 cg Exp $'
 ! !
 
 DialogBox initialize!