changed: #colorsFromX:y:toX:y:do:
authorClaus Gittinger <cg@exept.de>
Tue, 03 Nov 2009 10:21:58 +0100
changeset 5453 609297e36225
parent 5452 175bf2a1ee9f
child 5454 1e569c237d8f
changed: #colorsFromX:y:toX:y:do:
Depth8Image.st
--- a/Depth8Image.st	Tue Nov 03 10:04:04 2009 +0100
+++ b/Depth8Image.st	Tue Nov 03 10:21:58 2009 +0100
@@ -1894,7 +1894,7 @@
     y1 to:y2 do:[:y |
         srcNext := srcIndex + bytesPerRow.
         x1 to:x2 do:[:x |
-            value := bytes at:srcIndex "ifAbsent:0".
+            value := bytes at:srcIndex ifAbsent:0.
             srcIndex := srcIndex + 1.
 
             value >= maxColor ifTrue:[
@@ -2446,9 +2446,9 @@
 !Depth8Image class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Depth8Image.st,v 1.114 2009-10-20 14:15:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Depth8Image.st,v 1.115 2009-11-03 09:21:58 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/Depth8Image.st,v 1.114 2009-10-20 14:15:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Depth8Image.st,v 1.115 2009-11-03 09:21:58 cg Exp $'
 ! !