DialogBox.st
changeset 5811 e47e88107713
parent 5712 001865a1591f
child 5836 05baebb0b524
--- a/DialogBox.st	Wed Jul 27 21:28:28 2016 +0200
+++ b/DialogBox.st	Wed Aug 03 12:42:38 2016 +0200
@@ -3427,20 +3427,20 @@
 
 requestNewFileName:titleString default:defaultName
     "launch a Dialog, which allows user to enter a filename.
-     We expect a new files (i.e. nonexisting) name to be enterred,
+     We expect a new files (i.e. nonexisting) name to be entered,
      and confirm if it already exists.
      The box will not allow pressing 'ok' without an entered string.
      Return the pathname string consisting of the full pathname of the filename,
      or an empty string (if cancel was pressed)."
 
-    ^ self 
-        requestFileName:titleString 
-        default:defaultName 
-        version:#new 
+    ^ self
+        requestFileName:titleString
+        default:defaultName
+        version:#new
         ifFail:''
 
     "
-     Dialog requestNewFileName:'enter a fileName:' default:''  
+     Dialog requestNewFileName:'enter a fileName:' default:''
     "
 
     "Modified: 27.1.1996 / 13:44:13 / cg"