#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Thu, 24 Aug 2017 17:03:37 +0200
changeset 8098 489f84d2fc13
parent 8097 2a80bbb855bf
child 8099 e9c390f8675e
#DOCUMENTATION by cg class: Depth24Image comment/format in: #asGrayFormOn:
Depth24Image.st
--- a/Depth24Image.st	Thu Aug 24 17:01:00 2017 +0200
+++ b/Depth24Image.st	Thu Aug 24 17:03:37 2017 +0200
@@ -217,14 +217,17 @@
      greyScale displays."
 
     (aDevice visualType == #StaticGray) ifTrue:[
-	aDevice depth == 8 ifTrue:[
-	    ^ self makeDeviceGrayPixmapOn:aDevice depth:aDevice depth fromArray:(self threshold8BitGrayBits)
-	].
+        aDevice depth == 8 ifTrue:[
+            ^ self 
+                makeDeviceGrayPixmapOn:aDevice depth:aDevice depth 
+                fromArray:(self threshold8BitGrayBits)
+        ].
     ].
     ^ super asGrayFormOn:aDevice
 
-    "Created: 10.6.1996 / 19:00:45 / cg"
-    "Modified: 10.6.1996 / 20:10:19 / cg"
+    "Created: / 10-06-1996 / 19:00:45 / cg"
+    "Modified: / 10-06-1996 / 20:10:19 / cg"
+    "Modified (format): / 24-08-2017 / 15:18:31 / cg"
 !
 
 asThresholdGrayImageDepth:depth