Depth4Image.st
changeset 4405 f4c62bb63035
parent 3872 390fabbc3036
child 4758 019b6bf532b0
--- a/Depth4Image.st	Wed Jul 13 13:44:39 2005 +0200
+++ b/Depth4Image.st	Wed Jul 13 16:03:09 2005 +0200
@@ -195,7 +195,7 @@
         }
 
         if (__bothSmallInteger(_INST(height), _INST(width))
-         && __isArray(colorValues)
+         && __isArrayLike(colorValues)
          && srcPtr
          && dstPtr) {
             int r,p;
@@ -269,7 +269,7 @@
             }
 
             if (__bothSmallInteger(_INST(height), _INST(width))
-             && __isArray(colorValues)
+             && __isArrayLike(colorValues)
              && srcPtr
              && dstPtr) {
                 int x, y, w, h, nPix;
@@ -341,7 +341,7 @@
                 }
 
                 if (__bothSmallInteger(_INST(height), _INST(width))
-                 && __isArray(colorValues)
+                 && __isArrayLike(colorValues)
                  && srcPtr
                  && dstPtr) {
                     int x, y, w, h, nPix;
@@ -408,7 +408,7 @@
                     }
 
                     if (__bothSmallInteger(_INST(height), _INST(width))
-                     && __isArray(colorValues)
+                     && __isArrayLike(colorValues)
                      && srcPtr
                      && dstPtr) {
                         int x, y, w, h, nPix;
@@ -1029,5 +1029,5 @@
 !Depth4Image class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Depth4Image.st,v 1.46 2003-05-02 17:50:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Depth4Image.st,v 1.47 2005-07-13 14:03:09 cg Exp $'
 ! !