LayoutOrigin.st
changeset 3923 35437a72496b
parent 3865 e6f90d1cf89b
child 4285 86c48debecd5
--- a/LayoutOrigin.st	Wed Feb 22 18:38:02 2017 +0100
+++ b/LayoutOrigin.st	Wed Feb 22 18:58:12 2017 +0100
@@ -344,7 +344,7 @@
     "return a printed representation of the receiver for displaying"
 
     "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
-    "/ ST/X (and some old ST80's) mean: draw-yourself on a GC.
+    "/ old ST80 means: draw-yourself on a GC.
     (aGCOrStream isStream) ifFalse:[
         ^ super displayOn:aGCOrStream
     ].
@@ -360,7 +360,9 @@
     topFraction displayOn:aGCOrStream.
     aGCOrStream nextPut:$+. 
     topOffset displayOn:aGCOrStream.
-    aGCOrStream nextPut:$). 
+    aGCOrStream nextPut:$).
+
+    "Modified (comment): / 22-02-2017 / 16:49:31 / cg"
 ! !
 
 !LayoutOrigin methodsFor:'queries'!