#OTHER by mawalch
authormawalch
Wed, 03 Aug 2016 12:42:38 +0200
changeset 5811 e47e88107713
parent 5807 fdfb746e2499
child 5812 c80f679b5b46
child 5813 264f904ada97
#OTHER by mawalch enterred -> entered
DialogBox.st
--- 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"