openErrorSignal arg: always a string
authorClaus Gittinger <cg@exept.de>
Thu, 01 Apr 2004 14:27:03 +0200
changeset 5811 c397040c27b4
parent 5810 4661bf4c3bbf
child 5812 2304c8aa883e
openErrorSignal arg: always a string
FindFileApplication.st
--- a/FindFileApplication.st	Thu Apr 01 14:00:11 2004 +0200
+++ b/FindFileApplication.st	Thu Apr 01 14:27:03 2004 +0200
@@ -1358,7 +1358,7 @@
     [
         directoryContents := dir directoryContents.
     ] on:FileStream openErrorSignal do:[:ex|
-        list add:((ex parameter pathName , ' -> ' , ex description) asText colorizeAllWith:Color red darkened).
+        list add:((ex pathName , ' -> ' , ex description) asText colorizeAllWith:Color red darkened).
         "/        self warn:('Cannot access %1\(%2)'
         "/                        bindWith:ex parameter printString
         "/                        with:ex description) withCRs.
@@ -1461,5 +1461,5 @@
 !FindFileApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.44 2004-03-23 14:13:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.45 2004-04-01 12:27:03 cg Exp $'
 ! !