#FEATURE
authorClaus Gittinger <cg@exept.de>
Fri, 04 Mar 2016 19:43:52 +0100
changeset 3580 2bf7c5d62cf6
parent 3579 94a3b7222275
child 3581 cbd1af2f743b
#FEATURE class: MacOSXIconReader comment/format in: #readPackBitsImageFrom:offset:width:height:depth:
MacOSXIconReader.st
--- a/MacOSXIconReader.st	Fri Mar 04 19:28:50 2016 +0100
+++ b/MacOSXIconReader.st	Fri Mar 04 19:43:52 2016 +0100
@@ -648,14 +648,11 @@
                 decompressPackBitsFrom:compressedData at:1+offset to:data at:1 count:bytesPerChannel.
         ].
         ^ Depth8Image new
-            width:width
-            height:height
+            width:width height:height
             photometric:#blackIs0
-            samplesPerPixel:1
-            bitsPerSample:#(8)
+            samplesPerPixel:1 bitsPerSample:#(8)
             colorMap:nil
-            bits:data
-            mask:nil.
+            bits:data mask:nil.
     ].
 self halt.
     ^ nil