FindFileApplication.st
changeset 18877 f8d374955b51
parent 18709 259745978ab4
child 18987 14868cd41569
--- a/FindFileApplication.st	Wed Jul 10 18:26:27 2019 +0200
+++ b/FindFileApplication.st	Wed Jul 10 18:26:41 2019 +0200
@@ -966,11 +966,11 @@
         ] ifFalse:[
             fileToCompareAgainst includesMatchCharacters ifFalse:[
                 (fn := fileToCompareAgainst asFilename) exists ifFalse:[
-                    Dialog warn:('No such file: %1' bindWith:fileToCompareAgainst allBold).
+                    Dialog warn:'No such file: %1' with:fileToCompareAgainst allBold.
                     ^ self.
                 ].
                 fn isReadable ifFalse:[
-                    Dialog warn:('Cannot read: %1' bindWith:fileToCompareAgainst allBold).
+                    Dialog warn:'Cannot read: %1' with:fileToCompareAgainst allBold.
                     ^ self.
                 ]
             ].
@@ -998,6 +998,7 @@
         name:('FindFile[', dir asFilename baseName, ']')
 
     "Modified: / 16-03-2012 / 09:37:13 / cg"
+    "Modified: / 10-07-2019 / 18:26:13 / Claus Gittinger"
 !
 
 fileInInBrowser