# HG changeset patch # User Claus Gittinger # Date 1562775987 -7200 # Node ID 2c800ab8ade2be25ed26d2a7a1b73accad6021bd # Parent 717aa71f094538eae761f15a12e4018ecd725813 #REFACTORING by cg class: FileOperation::Move changed: #moveFiles:to:withOverWriteWarning:moveFileIfSame: warn:with: used diff -r 717aa71f0945 -r 2c800ab8ade2 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'!