FileOperation.st
changeset 7606 3c84b7692f2c
parent 7334 e0bd092badd1
child 7634 f3ff12d68382
--- a/FileOperation.st	Tue Jan 23 19:44:16 2007 +0100
+++ b/FileOperation.st	Wed Jan 24 19:53:44 2007 +0100
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libtool' }"
 
 Object subclass:#FileOperation
@@ -804,8 +803,8 @@
 
         Error handle:[:ex|
             "was not able to remove it"
-            Dialog warn:(ex description, '\' withCRs, ex signal notifierString).
-            self errorString:(ex description, ' - ', ex signal notifierString).
+            Dialog warn:(ex description).
+            self errorString:(ex description).
             result := false.
             ^ self.
         ] do:[
@@ -1345,5 +1344,5 @@
 !FileOperation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileOperation.st,v 1.75 2006-09-21 16:31:58 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileOperation.st,v 1.76 2007-01-24 18:53:44 cg Exp $'
 ! !