Rectangle.st
changeset 1245 c8afea3d5af0
parent 1151 7991d983b17d
child 1290 15ba3221b89b
--- a/Rectangle.st	Mon Apr 22 12:56:16 1996 +0200
+++ b/Rectangle.st	Mon Apr 22 13:03:32 1996 +0200
@@ -578,15 +578,16 @@
 !
 
 literalArrayEncoding
-    "encode myself as an array.
+    "encode myself as an array, from which a copy of the receiver
+     can be reconstructed with #decodeAsLiteralArray.
      The encoding is: (Rectangle orgX orgY cornX cornY)"
 
     ^ Array
-	with:#Rectangle
-	with:left
-	with:top
-	with:width
-	with:height
+        with:#Rectangle
+        with:left
+        with:top
+        with:width
+        with:height
 
 
     "
@@ -595,6 +596,7 @@
     "
 
     "Modified: 1.9.1995 / 02:16:54 / claus"
+    "Modified: 22.4.1996 / 13:00:36 / cg"
 !
 
 rectangleRelativeTo:aRectangle preferred:prefRect
@@ -1297,5 +1299,5 @@
 !Rectangle class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Rectangle.st,v 1.35 1996-04-10 20:15:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Rectangle.st,v 1.36 1996-04-22 11:03:02 cg Exp $'
 ! !