#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Wed, 22 Feb 2017 18:58:12 +0100
changeset 3923 35437a72496b
parent 3922 a82b5a12bf52
child 3924 62da91f94e21
#OTHER by cg comment in: #displayOn:
LayoutOrigin.st
--- 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'!