#errorSignal -> #description
authorStefan Vogel <sv@exept.de>
Fri, 11 Apr 2003 19:29:26 +0200
changeset 4818 bc4df453f375
parent 4817 ecd186733754
child 4819 e43202c670cd
#errorSignal -> #description
FileBrowser.st
--- a/FileBrowser.st	Fri Apr 11 19:24:38 2003 +0200
+++ b/FileBrowser.st	Fri Apr 11 19:29:26 2003 +0200
@@ -3508,7 +3508,7 @@
                             err := '''%1'' is a directory'.
                         ] ifFalse:[
                             Error handle:[:ex |
-                                err := ex errorString
+                                err := ex description
                             ] do:[
                                 OperatingSystem createHardLinkFrom:name1 to:name2
                             ]
@@ -3573,7 +3573,7 @@
                         err := '''%1'' does not exist (link created anyway)'.
                     ].
                     Error handle:[:ex |
-                        err := ex errorString
+                        err := ex description
                     ] do:[
                         OperatingSystem createSymbolicLinkFrom:name1 to:name2
                     ]
@@ -5808,7 +5808,7 @@
         Image imageLoadErrorSignal handle:[:ex | 
 "/            ex signal ~~ Image badImageFormatQuerySignal 
 "/            ifTrue:[
-                errmsg := ex errorString
+                errmsg := ex description
 "/            ]
         ] do:[
             img := Image fromFile:file.
@@ -7106,7 +7106,7 @@
         |errStr|
 
         failWarning ifFalse:[
-            errStr := resources string:ex errorString.
+            errStr := resources string:ex description.
             (self confirm:(resources 
                                 string:'An error occurred while decoding:\%1\\The file has either a different encoding or is corrupted.\\Continue ?'
                                 with:errStr) withCRs)
@@ -7820,5 +7820,5 @@
 !FileBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileBrowser.st,v 1.529 2003-04-08 14:48:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileBrowser.st,v 1.530 2003-04-11 17:29:26 stefan Exp $'
 ! !