Object.st
changeset 7285 76ff65cdd7e7
parent 7266 f2b64d3b43cf
child 7303 98111fb6a285
--- a/Object.st	Wed May 14 09:55:00 2003 +0200
+++ b/Object.st	Wed May 14 14:17:44 2003 +0200
@@ -691,6 +691,7 @@
      ^(self deepCopyUsing:(IdentityDictionary new)) postDeepCopyFrom:self
 ! !
 
+
 !Object methodsFor:'accessing'!
 
 at:index
@@ -6431,7 +6432,7 @@
 errorPrint
     "print the receiver on the standard error stream."
 
-    Stream streamErrorSignal catch:[
+    StreamError catch:[
         self printOn:Stderr
     ]
 
@@ -6443,7 +6444,7 @@
 
     "print the receiver followed by a cr on the standard error stream."
 
-    Stream streamErrorSignal catch:[
+    StreamError catch:[
         self printOn:Stderr.
         Stderr cr
     ]
@@ -7150,6 +7151,7 @@
     ^ self
 ! !
 
+
 !Object methodsFor:'secure message sending'!
 
 askFor:aSelector
@@ -9077,10 +9079,11 @@
     "Modified: 20.5.1996 / 10:28:53 / cg"
 ! !
 
+
 !Object class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.465 2003-05-07 15:15:42 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.466 2003-05-14 12:17:44 stefan Exp $'
 ! !
 
 Object initialize!