#REFACTORING by stefan expeccoALM_1_13
authorStefan Vogel <sv@exept.de>
Fri, 23 Nov 2018 15:09:43 +0100
changeset 4212 c1d6e47378d7
parent 4211 af6f06921024
child 4214 fd7887c261d5
#REFACTORING by stefan class: VisualComponent changed: #displayOn:x:y:
VisualComponent.st
--- a/VisualComponent.st	Mon Nov 12 15:20:03 2018 +0100
+++ b/VisualComponent.st	Fri Nov 23 15:09:43 2018 +0100
@@ -403,9 +403,10 @@
 displayOn:aGC x:x y:y
     "display the receiver translated by some amount on some graphicsContext"
 
-    ^ self displayOn:aGC at:(x @ y).
+    self displayOn:aGC at:(x @ y).
 
-    "Modified: 10.2.1997 / 13:52:57 / cg"
+    "Modified: / 10-02-1997 / 13:52:57 / cg"
+    "Modified: / 23-11-2018 / 14:53:34 / Stefan Vogel"
 ! !
 
 !VisualComponent methodsFor:'event handling'!