PCXReader.st
changeset 32 6bdcb6da4d4f
parent 29 e04e1aceff6f
child 35 f13cdd0b44c7
--- a/PCXReader.st	Thu Nov 17 15:24:56 1994 +0100
+++ b/PCXReader.st	Thu Nov 17 15:30:22 1994 +0100
@@ -16,14 +16,14 @@
 	 instanceVariableNames:''
 	 classVariableNames:''
 	 poolDictionaries:''
-	 category:'Graphics-Support'
+	 category:'Graphics-Images support'
 !
 
 PCXReader comment:'
 COPYRIGHT (c) 1994 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libview2/PCXReader.st,v 1.2 1994-10-28 03:16:37 claus Exp $
+$Header: /cvs/stx/stx/libview2/PCXReader.st,v 1.3 1994-11-17 14:29:39 claus Exp $
 '!
 
 !PCXReader class methodsFor:'documentation'!
@@ -44,7 +44,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libview2/PCXReader.st,v 1.2 1994-10-28 03:16:37 claus Exp $
+$Header: /cvs/stx/stx/libview2/PCXReader.st,v 1.3 1994-11-17 14:29:39 claus Exp $
 "
 !
 
@@ -108,13 +108,13 @@
 fromStreamWithHeader:header 
     | inDepth version compression nPlanes xmin ymin xmax ymax
       paletteType rawMap rMap gMap bMap 
-      endIndex "{Class: SmallInteger }"
-      srcIndex "{Class: SmallInteger }"
-      dstIndex "{Class: SmallInteger }"
-      rowIndex "{Class: SmallInteger }"
-      h        "{Class: SmallInteger }"
-      byte     "{Class: SmallInteger }"
-      nByte    "{Class: SmallInteger }"
+      endIndex    "{Class: SmallInteger }"
+      srcIndex    "{Class: SmallInteger }"
+      dstIndex    "{Class: SmallInteger }"
+      rowIndex    "{Class: SmallInteger }"
+      h           "{Class: SmallInteger }"
+      byte        "{Class: SmallInteger }"
+      nByte       "{Class: SmallInteger }"
       bytesPerRow "{Class: SmallInteger }"
       value       "{Class: SmallInteger }"
       idx2        "{Class: SmallInteger }"
@@ -288,7 +288,7 @@
     photometric := #palette.
     samplesPerPixel := 1.
     bitsPerSample := #(8).
-    colorMap := Array with:rMap with:gMap with:bMap.
+   colorMap := Array with:rMap with:gMap with:bMap.
 
     "
      |i f|