ShadowView.st
changeset 8191 eba71ad14f69
parent 7792 36150f514d6a
--- a/ShadowView.st	Mon Oct 09 14:56:31 2017 +0200
+++ b/ShadowView.st	Tue Oct 10 14:42:21 2017 +0200
@@ -40,7 +40,7 @@
 "
     ShadowView exists just to give PopUps and ModalBoxes a shadow. 
 
-    If shadowClr is nil, the shadowView reads the screen-contents under 
+    If shadowClr is nil, the shadowView reads the screen-contents under
     itself before realization, and uses a greyed version of these pixels
     for its background. If shadowClr is non-nil, that color is used
     as shadow (can be used for solid-black shadows).
@@ -277,13 +277,14 @@
 
 unmap
     "unmap the view - the view stays created (but invisible), and can be remapped again later.
-     relase the saved image of the covered view"
+     Release the saved image of the covered view"
 
     imageUnderShadow := nil.
     super unmap.
 
-    "Modified: 3.5.1996 / 23:45:23 / stefan"
-    "Modified: 12.5.1996 / 22:01:17 / cg"
+    "Modified: / 03-05-1996 / 23:45:23 / stefan"
+    "Modified: / 12-05-1996 / 22:01:17 / cg"
+    "Modified (comment): / 10-10-2017 / 14:37:26 / mawalch"
 ! !
 
 !ShadowView class methodsFor:'documentation'!