SimpleView.st
changeset 8028 e7f44af6889f
parent 8001 5acf4831dba3
child 8039 20dcb969dca9
--- a/SimpleView.st	Wed May 17 15:14:53 2017 +0200
+++ b/SimpleView.st	Wed May 17 16:42:19 2017 +0200
@@ -9653,19 +9653,20 @@
      time, to allocate device specific colors, fonts, bitmaps etc.
      The view may keep those in instance variables, to avoid reallocating
      those with every redraw.
-     If you ommit to do this, the views will still be able to display themself,
+     If you omit to do this, the views will still be able to display themself,
      but possibly slower, since resources are reallocated over and over.
      If you redefine this method, make certain that 'super fetchDeviceResources'
      is always sent."
 
     shadowColor notNil ifTrue:[
-	shadowColor := shadowColor onDevice:device
+        shadowColor := shadowColor onDevice:device
     ].
     lightColor notNil ifTrue:[
-	lightColor := lightColor onDevice:device
-    ].
-
-    "Created: 13.1.1997 / 21:51:59 / cg"
+        lightColor := lightColor onDevice:device
+    ].
+
+    "Created: / 13-01-1997 / 21:51:59 / cg"
+    "Modified (comment): / 17-05-2017 / 16:34:24 / mawalch"
 !
 
 fixSize