#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Wed, 10 Jul 2019 18:26:27 +0200
changeset 18876 2c800ab8ade2
parent 18875 717aa71f0945
child 18877 f8d374955b51
#REFACTORING by cg class: FileOperation::Move changed: #moveFiles:to:withOverWriteWarning:moveFileIfSame: warn:with: used
FileOperation.st
--- a/FileOperation.st	Wed Jul 10 18:20:01 2019 +0200
+++ b/FileOperation.st	Wed Jul 10 18:26:27 2019 +0200
@@ -1534,7 +1534,7 @@
         ]
     ].
     (aDirectory isDirectory) ifFalse:[
-        Dialog warn:('Destination %1 is not a directory.' bindWith:aDirectory asString allBold).
+        Dialog warn:'Destination %1 is not a directory.' with:aDirectory asString allBold.
         result := false.
         ^ self
     ].
@@ -1611,6 +1611,7 @@
     result := true.
 
     "Modified: / 20-03-2012 / 11:53:35 / cg"
+    "Modified: / 10-07-2019 / 18:25:47 / Claus Gittinger"
 ! !
 
 !FileOperation::Rename class methodsFor:'actions'!