DisplayObject.st
changeset 3615 dfa1e224ea8f
parent 3465 8d6d8462943c
child 3874 2dd502222f28
--- a/DisplayObject.st	Fri Mar 25 17:07:03 2016 +0100
+++ b/DisplayObject.st	Fri Mar 25 17:11:49 2016 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -304,7 +302,7 @@
 !DisplayObject methodsFor:'drawing'!
 
 drawDashedOutlineIn:aGC offset:anOffset
-    "draw the receivers outline at its origin offset by anOffset, aPoint"
+    "draw the receiver's outline at its origin offset by anOffset, aPoint"
 
     |prevStyle|
 
@@ -376,7 +374,7 @@
 !
 
 drawOutlineIn:aView
-    "draw the receivers outline at its origin"
+    "draw the receiver's outline at its origin"
 
     self drawOutlineIn:aView offset:0@0
 
@@ -384,13 +382,13 @@
 !
 
 drawOutlineIn:aView at:drawOrigin
-    "draw the receivers outline at drawOrigin, aPoint"
+    "draw the receiver's outline at drawOrigin, aPoint"
 
     self drawOutlineIn:aView offset:(drawOrigin - self origin)
 !
 
 drawOutlineIn:aView offset:anOffset
-    "draw the receivers outline at its origin offset by anOffset, aPoint"
+    "draw the receiver's outline at its origin offset by anOffset, aPoint"
 
     |org x y w h|
 
@@ -594,10 +592,10 @@
 !DisplayObject class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.40 2015-05-05 11:14:19 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/DisplayObject.st,v 1.40 2015-05-05 11:14:19 cg Exp $'
+    ^ '$Header$'
 ! !