FileSelectionBox.st
changeset 2441 50238eab2de4
parent 2376 ec58e7de7023
child 2463 e9c58d1f20aa
--- a/FileSelectionBox.st	Fri Oct 12 15:01:18 2001 +0200
+++ b/FileSelectionBox.st	Fri Oct 12 18:03:35 2001 +0200
@@ -77,12 +77,14 @@
 examples 
 "
   simple standard queries
+  (notice, that the receiver of those messages is Dialog - this should always
+   be done for compatibility - although the real fileBox implementation is here).
 
     very simple:
                                                                         [exBegin]
         |name|
 
-        name := FileSelectionBox requestFileName.
+        name := Dialog requestFileName.
         Transcript showCR:name
                                                                         [exEnd]
 
@@ -748,5 +750,5 @@
 !FileSelectionBox class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/FileSelectionBox.st,v 1.60 2001-06-19 15:02:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/FileSelectionBox.st,v 1.61 2001-10-12 16:03:35 cg Exp $'
 ! !