openErrorSignal arg: always a string
authorClaus Gittinger <cg@exept.de>
Thu, 01 Apr 2004 14:30:56 +0200
changeset 5812 2304c8aa883e
parent 5811 c397040c27b4
child 5813 26a361e05cf2
openErrorSignal arg: always a string
BrowserView.st
--- a/BrowserView.st	Thu Apr 01 14:27:03 2004 +0200
+++ b/BrowserView.st	Thu Apr 01 14:30:56 2004 +0200
@@ -2292,7 +2292,7 @@
 
             aStream close.
         ] on:FileStream openErrorSignal do:[:ex|
-            self warn:'cannot create: %1' with:fileName name
+            self warn:'Cannot create: %1' with:fileName name
         ]
     ].
     self normalLabel.
@@ -14632,7 +14632,7 @@
 !BrowserView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.774 2004-03-30 18:52:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.775 2004-04-01 12:30:56 cg Exp $'
 ! !
 
 BrowserView initialize!